summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-10-08 14:10:51 (GMT)
committerGuido van Rossum <guido@python.org>1996-10-08 14:10:51 (GMT)
commit6592f88fc0598aa465f214de0dd4eb5c58229976 (patch)
treed93302d42c26c4df827ee5ec5311edbc7f9a9aab /Lib
parentedaf1c931cb82bf8d27d78240eb7a30b0eb1a797 (diff)
downloadcpython-6592f88fc0598aa465f214de0dd4eb5c58229976.zip
cpython-6592f88fc0598aa465f214de0dd4eb5c58229976.tar.gz
cpython-6592f88fc0598aa465f214de0dd4eb5c58229976.tar.bz2
Removed debugging print statement
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_strop.py1
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`