Whitespace normalization.
authorTim Peters <tim.peters@gmail.com>
Mon, 20 Feb 2006 21:42:18 +0000 (21:42 +0000)
committerTim Peters <tim.peters@gmail.com>
Mon, 20 Feb 2006 21:42:18 +0000 (21:42 +0000)
Lib/bsddb/__init__.py
Lib/distutils/msvccompiler.py
Lib/test/test_zipfile.py

index b7bd4821419b20022b9107ab4c3293b355f4e07b..d3ee773cecea15b3d32ddf5f3d54adfab2e798d9 100644 (file)
@@ -194,7 +194,7 @@ class _DBWithCursor(_iter_mixin):
                 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():
index aefcf987098d7e5d48ca64b31560a67a6372f22d..f88f36526c5df184be9f8094d0fd9af461ba4bde 100644 (file)
@@ -184,7 +184,7 @@ def get_build_architecture():
         return "Intel"
     j = string.find(sys.version, ")", i)
     return sys.version[i+len(prefix):j]
-    
+
 
 
 class MSVCCompiler (CCompiler) :
@@ -232,7 +232,7 @@ class MSVCCompiler (CCompiler) :
         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 @@ class MSVCCompiler (CCompiler) :
             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:
index 9fadc30f20fcb3b4da4cdc16878afb86bbf19c7a..0241348d865fb3eb7b0572d96abc363bb70e49c1 100644 (file)
@@ -53,7 +53,7 @@ class TestsWithSourceFile(unittest.TestCase):
         zipfp = zipfile.ZipFile(TESTFN2, "r", zipfile.ZIP_STORED)
         self.assertEqual(zipfp.namelist(), ["absolute"])
         zipfp.close()
-        
+
 
     def tearDown(self):
         os.remove(TESTFN)