summaryrefslogtreecommitdiff
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-01-15 02:01:20 +0000
committerChristian Heimes <christian@cheimes.de>2008-01-15 02:01:20 +0000
commit0e70169550463c4468e91a8f70a493ec35075901 (patch)
treefb1a17404d3ca14be8cb82ddf70ccbdf7ac53b94 /Misc/NEWS
parent02c10eb19448d8d1cf05db94ebd2b88fe6c745eb (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8a770609ba..c59efa1b43 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.