]> granicus.if.org Git - python/commitdiff
Whitespace normalization.
authorTim Peters <tim.peters@gmail.com>
Tue, 24 Dec 2002 18:31:27 +0000 (18:31 +0000)
committerTim Peters <tim.peters@gmail.com>
Tue, 24 Dec 2002 18:31:27 +0000 (18:31 +0000)
Lib/email/_compat21.py
Lib/encodings/__init__.py
Lib/test/test_datetime.py
Lib/test/test_descr.py
Lib/test/test_macpath.py
Lib/test/test_ntpath.py
Lib/test/test_shelve.py

index de8c44753de43601210714d835b08051ac21a9ad..d220723793a0ebdf11e79ca696cdc508568daba6 100644 (file)
@@ -31,7 +31,7 @@ def _floordiv(i, j):
 
 
 def _isstring(obj):
-    return isinstance(obj, StringType) or isinstance(obj, UnicodeType)    
+    return isinstance(obj, StringType) or isinstance(obj, UnicodeType)
 
 
 \f
index b2542b8bd745e207783af49ba19545bdbedb0ced..66bea5c06846d2586bc709ba9a5aa9580d61669b 100644 (file)
@@ -46,7 +46,7 @@ def normalize_encoding(encoding):
         characters except the dot used for Python package names are
         collapsed and replaced with a single underscore, e.g. '  -;#'
         becomes '_'.
-        
+
     """
     return '_'.join(_norm_encoding_RE.split(encoding))
 
index fe52212480088671f83f1e73dab6cc9170655982..25c771622505478b0a379373d5e453af949db29e 100644 (file)
@@ -2258,7 +2258,7 @@ class TestDateTimeTZ(TestDateTime, TZInfoBase):
         cls = self.theclass
         datestr = '0001-02-03'
         for ofs in None, zero, plus, minus, unknown:
-             for us in 0, 987001:
+            for us in 0, 987001:
                 d = cls(1, 2, 3, 4, 5, 59, us, tzinfo=ofs)
                 timestr = '04:05:59' + (us and '.987001' or '')
                 ofsstr = ofs is not None and d.tzname() or ''
index 0f656c244229aa3899ae3a9a1dfa0b3822c00151..8d36fd5b39a2a901d17d712336233e225360d185 100644 (file)
@@ -3447,7 +3447,7 @@ def test_mutable_bases():
             if attr == 'a':
                 return 2
             else:
-                return super(C2, self).__getattribute__(attr)        
+                return super(C2, self).__getattribute__(attr)
         def meth(self):
             return 1
     class D(C):
@@ -3576,7 +3576,7 @@ def test_mutable_bases_with_failing_mro():
     # Immediate subclasses have their mro's adjusted in alphabetical
     # order, so E's will get adjusted before adjusting F's fails.  We
     # check here that E's gets restored.
-    
+
     E_mro_before = E.__mro__
     D_mro_before = D.__mro__
 
@@ -3610,20 +3610,20 @@ def test_mutable_bases_catch_mro_conflict():
         pass
     else:
         raise TestFailed, "didn't catch MRO conflict"
-    
+
 def mutable_names():
     class C(object):
         pass
 
     # C.__module__ could be 'test_descr' or '__main__'
     mod = C.__module__
-    
+
     C.__name__ = 'D'
     vereq((C.__module__, C.__name__), (mod, 'D'))
 
     C.__name__ = 'D.E'
     vereq((C.__module__, C.__name__), (mod, 'D.E'))
-    
+
 
 def test_main():
     do_this_first()
index 67b1bedbbc1fa25a1d6294195eee623587295652..3a3cf04c8b160b11328bcfbdbdcdc724f69cbaf8 100644 (file)
@@ -61,4 +61,3 @@ def test_main():
 
 if __name__ == "__main__":
     test_main()
-
index 2419844e418f43795e04def7f1e8434f16c3d6bd..fdb431aa6413cd003bbc23e4b70dffef6b72bd66 100644 (file)
@@ -15,7 +15,7 @@ def tester(fn, wantResult):
         print " returned: " + str(gotResult)
         print ""
         errors = errors + 1
-        
+
 tester('ntpath.splitext("foo.ext")', ('foo', '.ext'))
 tester('ntpath.splitext("/foo/foo.ext")', ('/foo/foo', '.ext'))
 tester('ntpath.splitext(".ext")', ('', '.ext'))
index 29af82eab0439f0a2727fd5a806c6990a49dcfce..e69e311ed9cf26b852045f2f949abdbda9cef7b9 100644 (file)
@@ -7,7 +7,7 @@ from test import test_support
 class TestCase(unittest.TestCase):
 
     fn = "shelftemp.db"
-    
+
     def test_ascii_file_shelf(self):
         try:
             s = shelve.open(self.fn, binary=False)