Add better error reporting for MemoryErrors caused by str->float conversions.

This commit is contained in:
Mark Dickinson 2010-01-16 20:33:02 +00:00
parent 5afe42b69b
commit d87f22cec8
1 changed files with 2 additions and 0 deletions

View File

@ -91,6 +91,8 @@ class StrtodTests(unittest.TestCase):
fs = float(s)
except OverflowError:
got = '-inf' if s[0] == '-' else 'inf'
except MemoryError:
got = 'memory error'
else:
got = fs.hex()
expected = strtod(s)