[Python-checkins] r42529 - in python/trunk/Lib: bsddb/__init__.py distutils/msvccompiler.py test/test_zipfile.py

tim.peters python-checkins at python.org
Mon Feb 20 22:42:20 CET 2006


Author: tim.peters
Date: Mon Feb 20 22:42:18 2006
New Revision: 42529

Modified:
   python/trunk/Lib/bsddb/__init__.py
   python/trunk/Lib/distutils/msvccompiler.py
   python/trunk/Lib/test/test_zipfile.py
Log:
Whitespace normalization.


Modified: python/trunk/Lib/bsddb/__init__.py
==============================================================================
--- python/trunk/Lib/bsddb/__init__.py	(original)
+++ python/trunk/Lib/bsddb/__init__.py	Mon Feb 20 22:42:18 2006
@@ -194,7 +194,7 @@
                 try:
                     self.saved_dbc_key = c.current(0,0,0)[0]
                 except db.DBError:
-                    pass                    
+                    pass
             c.close()
             del c
         for cref in self._cursor_refs.values():

Modified: python/trunk/Lib/distutils/msvccompiler.py
==============================================================================
--- python/trunk/Lib/distutils/msvccompiler.py	(original)
+++ python/trunk/Lib/distutils/msvccompiler.py	Mon Feb 20 22:42:18 2006
@@ -184,7 +184,7 @@
         return "Intel"
     j = string.find(sys.version, ")", i)
     return sys.version[i+len(prefix):j]
-    
+
 
 
 class MSVCCompiler (CCompiler) :
@@ -232,7 +232,7 @@
         else:
             # Win64. Assume this was built with the platform SDK
             self.__product = "Microsoft SDK compiler %s" % (self.__version + 6)
-            
+
         self.initialized = False
 
     def initialize(self):
@@ -281,7 +281,7 @@
             self.compile_options = [ '/nologo', '/Ox', '/MD', '/W3', '/GS-' ,
                                      '/DNDEBUG']
             self.compile_options_debug = ['/nologo', '/Od', '/MDd', '/W3', '/GS-',
-                                          '/Z7', '/D_DEBUG']            
+                                          '/Z7', '/D_DEBUG']
 
         self.ldflags_shared = ['/DLL', '/nologo', '/INCREMENTAL:NO']
         if self.__version >= 7:

Modified: python/trunk/Lib/test/test_zipfile.py
==============================================================================
--- python/trunk/Lib/test/test_zipfile.py	(original)
+++ python/trunk/Lib/test/test_zipfile.py	Mon Feb 20 22:42:18 2006
@@ -53,7 +53,7 @@
         zipfp = zipfile.ZipFile(TESTFN2, "r", zipfile.ZIP_STORED)
         self.assertEqual(zipfp.namelist(), ["absolute"])
         zipfp.close()
-        
+
 
     def tearDown(self):
         os.remove(TESTFN)


More information about the Python-checkins mailing list