summaryrefslogtreecommitdiff
path: root/Lib/test/test_dis.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2003-03-07 15:55:36 +0000
committerTim Peters <tim.peters@gmail.com>2003-03-07 15:55:36 +0000
commitdfa9c503e1c5e7dab5981c4e30f6b58879969f96 (patch)
treea0799e20f527c67ac4228daa7313f5c791dd6941 /Lib/test/test_dis.py
parentdaf77a0f4a2d8caf67838f39af853ea53a91e8bb (diff)
downloadcpython-dfa9c503e1c5e7dab5981c4e30f6b58879969f96.tar.gz
This test relied on significant trailing whitespace in a string literal.
Evil.
Diffstat (limited to 'Lib/test/test_dis.py')
-rw-r--r--Lib/test/test_dis.py19
1 files changed, 12 insertions, 7 deletions
diff --git a/Lib/test/test_dis.py b/Lib/test/test_dis.py
index 78ff1c27ea..ab93d4a0ec 100644
--- a/Lib/test/test_dis.py
+++ b/Lib/test/test_dis.py
@@ -10,18 +10,18 @@ import unittest
# placement is crucial!!! move the start of _f and you have to adjust the
# line numbers in dis_f
def _f(a):
- print a
- return 1
+ print a
+ return 1
dis_f = """\
13 0 LOAD_FAST 0 (a)
- 3 PRINT_ITEM
- 4 PRINT_NEWLINE
+ 3 PRINT_ITEM
+ 4 PRINT_NEWLINE
14 5 LOAD_CONST 1 (1)
- 8 RETURN_VALUE
+ 8 RETURN_VALUE
9 LOAD_CONST 0 (None)
- 12 RETURN_VALUE
+ 12 RETURN_VALUE
"""
class DisTests(unittest.TestCase):
@@ -43,7 +43,12 @@ class DisTests(unittest.TestCase):
sys.stdout = s
dis.dis(_f)
sys.stdout = save_stdout
- self.assertEqual(dis_f, s.getvalue())
+ got = s.getvalue()
+ # Trim trailing blanks (if any).
+ lines = got.split('\n')
+ lines = [line.rstrip() for line in lines]
+ got = '\n'.join(lines)
+ self.assertEqual(dis_f, got)
def test_main():
run_unittest(DisTests)