summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_dis.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-07-18 21:55:15 (GMT)
committerTim Peters <tim.peters@gmail.com>2006-07-18 21:55:15 (GMT)
commit73a9eade1c864a5351c4a33cd20983f11dd79d94 (patch)
treedf02505cc40c453cd820e82e5fe2e043801a6616 /Lib/test/test_dis.py
parent426f4a1c65e59a9b06b42cd37fbe310f46afcee0 (diff)
downloadcpython-73a9eade1c864a5351c4a33cd20983f11dd79d94.zip
cpython-73a9eade1c864a5351c4a33cd20983f11dd79d94.tar.gz
cpython-73a9eade1c864a5351c4a33cd20983f11dd79d94.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_dis.py')
-rw-r--r--Lib/test/test_dis.py8
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):