diff options
author | Michael W. Hudson <mwh@python.net> | 2003-04-30 08:42:19 (GMT) |
---|---|---|
committer | Michael W. Hudson <mwh@python.net> | 2003-04-30 08:42:19 (GMT) |
commit | 1bc2fdd785d481d8b1d63b761a115e88f1481be9 (patch) | |
tree | 5d98fdf7e0b4d7f463ac0b902caf481702c827e7 /Lib/test/test_dis.py | |
parent | f9addb676d7ef864c6685a1ac8423b5b2663ec68 (diff) | |
download | cpython-1bc2fdd785d481d8b1d63b761a115e88f1481be9.zip cpython-1bc2fdd785d481d8b1d63b761a115e88f1481be9.tar.gz cpython-1bc2fdd785d481d8b1d63b761a115e88f1481be9.tar.bz2 |
Delete comment my last checkin rendered obsolete.
I should also not that my last checkin did stuff that made failures give
more helpful information.
Diffstat (limited to 'Lib/test/test_dis.py')
-rw-r--r-- | Lib/test/test_dis.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_dis.py b/Lib/test/test_dis.py index d88ea45..6d5e054 100644 --- a/Lib/test/test_dis.py +++ b/Lib/test/test_dis.py @@ -7,8 +7,6 @@ import StringIO 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 |