summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-04-25 13:16:50 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-04-25 13:16:50 (GMT)
commit22999a69e1e810757823abef87b744ad3686f908 (patch)
tree628d57dd33361b55949705375334f1248d0716b0 /Misc
parentde0d5e3247ab17f481af07b548dc930ddfd80740 (diff)
downloadcpython-22999a69e1e810757823abef87b744ad3686f908.zip
cpython-22999a69e1e810757823abef87b744ad3686f908.tar.gz
cpython-22999a69e1e810757823abef87b744ad3686f908.tar.bz2
Issue #5829: complex('1e-500') shouldn't raise an exception.
Also fix some confusing indentation.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b9afc3f..f3be937 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 2.6.3
Core and Builtins
-----------------
+- Issue #5829: complex('1e-500') no longer raises an exception
+
- Issue #5787: object.__getattribute__(some_type, "__bases__") segfaulted on
some builtin types.