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 /Lib/test/test_locale.py | |
parent | 0e540c391f5d2af051ec7f1ef3edb4d1bad3fa91 (diff) | |
download | cpython-8ae2df483c4682dead74ea0584f4d61955621667.zip cpython-8ae2df483c4682dead74ea0584f4d61955621667.tar.gz cpython-8ae2df483c4682dead74ea0584f4d61955621667.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_locale.py')
-rw-r--r-- | Lib/test/test_locale.py | 4 |
1 files changed, 2 insertions, 2 deletions
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) |