diff options
author | Michael W. Hudson <mwh@python.net> | 2002-03-17 19:31:28 (GMT) |
---|---|---|
committer | Michael W. Hudson <mwh@python.net> | 2002-03-17 19:31:28 (GMT) |
commit | 2b92139064c532e59a9ea3b24885109b74a0ad09 (patch) | |
tree | 25d1f4ee4344708a23d5ff97bee26571a47e147b | |
parent | e115134015cd3928611116a98ae6466768a752cc (diff) | |
download | cpython-2b92139064c532e59a9ea3b24885109b74a0ad09.zip cpython-2b92139064c532e59a9ea3b24885109b74a0ad09.tar.gz cpython-2b92139064c532e59a9ea3b24885109b74a0ad09.tar.bz2 |
Backport nnorwitz's checkin of revision 1.119:
Fix typo
-rw-r--r-- | Lib/test/test_descr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index a1bb650..1188e1d 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..." |