Added some underflow-to-0.0 long/long true division tests.

This commit is contained in:
Tim Peters 2001-09-06 22:03:36 +00:00
parent 8d7234d1dc
commit 4bd810aaf2
1 changed files with 6 additions and 0 deletions

View File

@ -37,6 +37,12 @@ def test_true_division():
else:
raise TestFailed("expected OverflowError from %r" % overflow)
for underflow in ["1 / huge", "2L / huge", "-1 / huge", "-2L / huge",
"100 / mhuge", "100L / mhuge"]:
result = eval(underflow, namespace)
if result != 0.0:
raise TestFailed("expected undeflow to 0 from %r" % undeflow)
for zero in ["huge / 0", "huge / 0L",
"mhuge / 0", "mhuge / 0L"]:
try: