From: Tim Peters Date: Wed, 2 May 2001 05:54:44 +0000 (+0000) Subject: Whitespace normalization. X-Git-Tag: v2.2a3~1936 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8ae2df483c4682dead74ea0584f4d61955621667;p=thirdparty%2FPython%2Fcpython.git Whitespace normalization. --- diff --git a/Lib/asyncore.py b/Lib/asyncore.py index 8c9ec63477e4..548ce430704e 100644 --- a/Lib/asyncore.py +++ b/Lib/asyncore.py @@ -224,7 +224,7 @@ class dispatcher: ' '.join (status), id (self)) except: pass - + try: ar = repr (self.addr) except AttributeError: diff --git a/Lib/test/test_locale.py b/Lib/test/test_locale.py index 91646ee2a07d..0040a20899af 100644 --- a/Lib/test/test_locale.py +++ b/Lib/test/test_locale.py @@ -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)