Commit be546753 authored by Tim Peters's avatar Tim Peters

Whitespace normalization.

parent 71711cce
......@@ -224,7 +224,7 @@ class dispatcher:
' '.join (status), id (self))
except:
pass
try:
ar = repr (self.addr)
except AttributeError:
......
......@@ -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)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment