diff options
author | Guido van Rossum <guido@python.org> | 1996-10-08 14:10:51 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-10-08 14:10:51 (GMT) |
commit | 6592f88fc0598aa465f214de0dd4eb5c58229976 (patch) | |
tree | d93302d42c26c4df827ee5ec5311edbc7f9a9aab /Lib/test/test_strop.py | |
parent | edaf1c931cb82bf8d27d78240eb7a30b0eb1a797 (diff) | |
download | cpython-6592f88fc0598aa465f214de0dd4eb5c58229976.zip cpython-6592f88fc0598aa465f214de0dd4eb5c58229976.tar.gz cpython-6592f88fc0598aa465f214de0dd4eb5c58229976.tar.bz2 |
Removed debugging print statement
Diffstat (limited to 'Lib/test/test_strop.py')
-rw-r--r-- | Lib/test/test_strop.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_strop.py b/Lib/test/test_strop.py index 5b2ddfb..6028b0d 100644 --- a/Lib/test/test_strop.py +++ b/Lib/test/test_strop.py @@ -6,7 +6,6 @@ def test(name, input, output): value = f(input) except: value = sys.exc_type - print sys.exc_value if value != output: print f, `input`, `output`, `value` |