diff options
author | Christian Heimes <christian@cheimes.de> | 2008-01-15 02:01:20 +0000 |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-01-15 02:01:20 +0000 |
commit | 0e70169550463c4468e91a8f70a493ec35075901 (patch) | |
tree | fb1a17404d3ca14be8cb82ddf70ccbdf7ac53b94 /Misc/NEWS | |
parent | 02c10eb19448d8d1cf05db94ebd2b88fe6c745eb (diff) | |
download | cpython-0e70169550463c4468e91a8f70a493ec35075901.tar.gz |
long(float('nan')) raises an OverflowError as discussed on the mailing list a week ago
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 3.0a3? Core and Builtins ----------------- +- Object/longobject.c: long(float('nan')) raises an OverflowError instead + of returning 0. + - Issue #1762972: __file__ points to the source file instead of the pyc/pyo file if the py file exists. |