From: Mark Dickinson Date: Tue, 23 Feb 2010 13:06:50 +0000 (+0000) Subject: Fix spacing nit. Thanks Eric Smith for the public humiliation. X-Git-Tag: v2.7a4~132 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cf80f04b16e25d05f60ca9a2e94cbf742b01d47a;p=python Fix spacing nit. Thanks Eric Smith for the public humiliation. --- diff --git a/Lib/test/test_format.py b/Lib/test/test_format.py index 11c09983b4..f39426b82b 100644 --- a/Lib/test/test_format.py +++ b/Lib/test/test_format.py @@ -55,18 +55,18 @@ def testboth(formatstr, *args, **kwargs): class FormatTest(unittest.TestCase): def test_format(self): testboth("%.1d", (1,), "1") - testboth("%.*d", (sys.maxint,1), overflowok = True) # expect overflow + testboth("%.*d", (sys.maxint,1), overflowok=True) # expect overflow testboth("%.100d", (1,), '00000000000000000000000000000000000000' '000000000000000000000000000000000000000000000000000000' - '00000001', overflowok = True) + '00000001', overflowok=True) testboth("%#.117x", (1,), '0x00000000000000000000000000000000000' '000000000000000000000000000000000000000000000000000000' '0000000000000000000000000001', - overflowok = True) + overflowok=True) testboth("%#.118x", (1,), '0x00000000000000000000000000000000000' '000000000000000000000000000000000000000000000000000000' '00000000000000000000000000001', - overflowok = True) + overflowok=True) testboth("%f", (1.0,), "1.000000") # these are trying to test the limits of the internal magic-number-length