diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-05-02 05:54:44 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-05-02 05:54:44 (GMT) |
commit | 8ae2df483c4682dead74ea0584f4d61955621667 (patch) | |
tree | 5aeb339467a0caa0eb25699d042d1607335d422e | |
parent | 0e540c391f5d2af051ec7f1ef3edb4d1bad3fa91 (diff) | |
download | cpython-8ae2df483c4682dead74ea0584f4d61955621667.zip cpython-8ae2df483c4682dead74ea0584f4d61955621667.tar.gz cpython-8ae2df483c4682dead74ea0584f4d61955621667.tar.bz2 |
Whitespace normalization.
-rw-r--r-- | Lib/asyncore.py | 2 | ||||
-rw-r--r-- | Lib/test/test_locale.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Lib/asyncore.py b/Lib/asyncore.py index 8c9ec63..548ce43 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 91646ee..0040a20 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) |