summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-09-07 00:47:00 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-09-07 00:47:00 (GMT)
commit9652de9d825f2e377c4238145cc914bd28fa7111 (patch)
tree49d4191307078859b5598e5badafb4c6aeefbd37 /Lib
parentc5b235c59c956ec972521ac0b0e5dc3aa56ca19a (diff)
downloadcpython-9652de9d825f2e377c4238145cc914bd28fa7111.zip
cpython-9652de9d825f2e377c4238145cc914bd28fa7111.tar.gz
cpython-9652de9d825f2e377c4238145cc914bd28fa7111.tar.bz2
Fix typo in error reporting. This doesn't need to go into the release
branch (if it ever gets to the typo, the test is failing anyway).
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_long_future.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_long_future.py b/Lib/test/test_long_future.py
index 03d09fc..cb0ac58 100644
--- a/Lib/test/test_long_future.py
+++ b/Lib/test/test_long_future.py
@@ -41,7 +41,7 @@ def test_true_division():
"100 / mhuge", "100L / mhuge"]:
result = eval(underflow, namespace)
if result != 0.0:
- raise TestFailed("expected undeflow to 0 from %r" % undeflow)
+ raise TestFailed("expected underflow to 0 from %r" % underflow)
for zero in ["huge / 0", "huge / 0L",
"mhuge / 0", "mhuge / 0L"]: