summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-02-02 22:55:09 (GMT)
committerRaymond Hettinger <python@rcn.com>2009-02-02 22:55:09 (GMT)
commite8364233aea88cf68e8f54a515dce10160ead35b (patch)
treebbe6369d9536d20602676c097b8c60ce8fa325a0 /Misc
parent9f9892648f954e45a628113febb524261075db32 (diff)
downloadcpython-e8364233aea88cf68e8f54a515dce10160ead35b.zip
cpython-e8364233aea88cf68e8f54a515dce10160ead35b.tar.gz
cpython-e8364233aea88cf68e8f54a515dce10160ead35b.tar.bz2
Issue 1242657: list(obj) can swallow KeyboardInterrupt.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 71f9ca1..5426046 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -17,6 +17,9 @@ Core and Builtins
the type definition cmpfunc. The tp_compare slot has been renamed
to tp_reserved, and is reserved for future usage.
+- Issue 1242657: the __len__() and __length_hint__() calls in several tools
+ were suppressing all exceptions. These include list() and bytearray().
+
- Issue #4707: round(x, n) now returns an integer if x is an integer.
Previously it returned a float.