summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2002-03-11 14:44:12 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2002-03-11 14:44:12 (GMT)
commit1af5e35a98008e5eb6406dc4f4ff831eee23a0e5 (patch)
tree7e69b4d80e917bee28dc1e4adfc1bae4de6844d5 /Lib
parentc9e9e40b7bc5de0fb6740cb3dd89427ddf60e2cd (diff)
downloadcpython-1af5e35a98008e5eb6406dc4f4ff831eee23a0e5.zip
cpython-1af5e35a98008e5eb6406dc4f4ff831eee23a0e5.tar.gz
cpython-1af5e35a98008e5eb6406dc4f4ff831eee23a0e5.tar.bz2
Fix typo
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_descr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py
index 32940eb..a640bb4 100644
--- a/Lib/test/test_descr.py
+++ b/Lib/test/test_descr.py
@@ -438,7 +438,7 @@ def ints():
except TypeError:
pass
else:
- raise TestFailed, "NotImplemented should have caused TypeErrpr"
+ raise TestFailed, "NotImplemented should have caused TypeError"
def longs():
if verbose: print "Testing long operations..."