summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2013-11-06 12:17:39 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2013-11-06 12:17:39 (GMT)
commit95887b7e5bddc6083e254a565ca6d6f40ca47020 (patch)
tree0e68e3033b3bc0730bcb214029b92abee6f8bf8e /Lib
parent07155c9c146065b0aa6726d76fb66969c7ef4d82 (diff)
downloadcpython-95887b7e5bddc6083e254a565ca6d6f40ca47020.zip
cpython-95887b7e5bddc6083e254a565ca6d6f40ca47020.tar.gz
cpython-95887b7e5bddc6083e254a565ca6d6f40ca47020.tar.bz2
Remove incorrect comment from dis tests
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_dis.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_dis.py b/Lib/test/test_dis.py
index efc82f1..2b54678 100644
--- a/Lib/test/test_dis.py
+++ b/Lib/test/test_dis.py
@@ -285,7 +285,6 @@ class DisWithFileTests(DisTests):
# Run the tests again, using the file arg instead of print
def get_disassembly(self, func, lasti=-1, wrapper=True):
- # We want to test the default printing behaviour, not the file arg
output = io.StringIO()
if wrapper:
dis.dis(func, file=output)