diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-07-18 21:55:15 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-07-18 21:55:15 (GMT) |
commit | 73a9eade1c864a5351c4a33cd20983f11dd79d94 (patch) | |
tree | df02505cc40c453cd820e82e5fe2e043801a6616 /Lib/test | |
parent | 426f4a1c65e59a9b06b42cd37fbe310f46afcee0 (diff) | |
download | cpython-73a9eade1c864a5351c4a33cd20983f11dd79d94.zip cpython-73a9eade1c864a5351c4a33cd20983f11dd79d94.tar.gz cpython-73a9eade1c864a5351c4a33cd20983f11dd79d94.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_dis.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/test/test_dis.py b/Lib/test/test_dis.py index 0aaae8f..c31092c 100644 --- a/Lib/test/test_dis.py +++ b/Lib/test/test_dis.py @@ -133,10 +133,10 @@ class DisTests(unittest.TestCase): def test_big_linenos(self): def func(count): - namespace = {} - func = "def foo():\n " + "".join(["\n "] * count + ["spam\n"]) - exec func in namespace - return namespace['foo'] + namespace = {} + func = "def foo():\n " + "".join(["\n "] * count + ["spam\n"]) + exec func in namespace + return namespace['foo'] # Test all small ranges for i in xrange(1, 300): |