]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Whitespace normalization.
authorTim Peters <tim.peters@gmail.com>
Wed, 2 May 2001 05:54:44 +0000 (05:54 +0000)
committerTim Peters <tim.peters@gmail.com>
Wed, 2 May 2001 05:54:44 +0000 (05:54 +0000)
Lib/asyncore.py
Lib/test/test_locale.py

index 8c9ec63477e4c267ad2524559bd56962bc4abab8..548ce430704e6e6f97d21aceb60420f2091c4758 100644 (file)
@@ -224,7 +224,7 @@ class dispatcher:
                                       ' '.join (status), id (self))
         except:
             pass
-        
+
         try:
             ar = repr (self.addr)
         except AttributeError:
index 91646ee2a07d64d1498333eb513a7fd4f016190d..0040a20899af109902356871f73118bb917fed0b 100644 (file)
@@ -36,7 +36,7 @@ try:
     testformat("%f", -42, grouping=1, output='-42.000000')
     testformat("%+f", -42, grouping=1, output='-42.000000')
     testformat("%20.f", -42, grouping=1, output='                 -42')
-    testformat("%+10.f", -4200, grouping=1, output='    -4,200')    
-    testformat("%-10.f", 4200, grouping=1, output='4,200     ')    
+    testformat("%+10.f", -4200, grouping=1, output='    -4,200')
+    testformat("%-10.f", 4200, grouping=1, output='4,200     ')
 finally:
     locale.setlocale(locale.LC_NUMERIC, oldlocale)