[Python-checkins] r52378 - in python/trunk: Lib/distutils/unixccompiler.py Lib/test/test_import.py Mac/BuildScript/build-installer.py

tim.peters python-checkins at python.org
Wed Oct 18 07:09:13 CEST 2006


Author: tim.peters
Date: Wed Oct 18 07:09:12 2006
New Revision: 52378

Modified:
   python/trunk/Lib/distutils/unixccompiler.py
   python/trunk/Lib/test/test_import.py
   python/trunk/Mac/BuildScript/build-installer.py
Log:
Whitespace normalization.


Modified: python/trunk/Lib/distutils/unixccompiler.py
==============================================================================
--- python/trunk/Lib/distutils/unixccompiler.py	(original)
+++ python/trunk/Lib/distutils/unixccompiler.py	Wed Oct 18 07:09:12 2006
@@ -82,7 +82,7 @@
         except ValueError:
             pass
 
-    # Check if the SDK that is used during compilation actually exists, 
+    # Check if the SDK that is used during compilation actually exists,
     # the universal build requires the usage of a universal SDK and not all
     # users have that installed by default.
     sysroot = None

Modified: python/trunk/Lib/test/test_import.py
==============================================================================
--- python/trunk/Lib/test/test_import.py	(original)
+++ python/trunk/Lib/test/test_import.py	Wed Oct 18 07:09:12 2006
@@ -18,7 +18,7 @@
 
 
 class ImportTest(unittest.TestCase):
-    
+
     def testCaseSensitivity(self):
         # Brief digression to test that import is case-sensitive:  if we got this
         # far, we know for sure that "random" exists.
@@ -56,7 +56,7 @@
                     mod = __import__(TESTFN)
                 except ImportError, err:
                     self.fail("import from %s failed: %s" % (ext, err))
-                
+
                 self.assertEquals(mod.a, a,
                     "module loaded (%s) but contents invalid" % mod)
                 self.assertEquals(mod.b, b,

Modified: python/trunk/Mac/BuildScript/build-installer.py
==============================================================================
--- python/trunk/Mac/BuildScript/build-installer.py	(original)
+++ python/trunk/Mac/BuildScript/build-installer.py	Wed Oct 18 07:09:12 2006
@@ -664,7 +664,7 @@
         for dn in dirnames:
             os.chmod(os.path.join(dirpath, dn), 0775)
             os.chown(os.path.join(dirpath, dn), -1, gid)
-            
+
 
         for fn in filenames:
             if os.path.islink(fn):


More information about the Python-checkins mailing list