summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-12-19 21:27:41 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-12-19 21:27:41 (GMT)
commit5ff3f73d94305900c0773e67ebdd9701d856a0fe (patch)
tree2d63f3211ab3419a020f71fd081ff6d02cf9d7e2 /Misc
parent1f415cf2c2b5f3eec5489ec1276c0629b32b28c0 (diff)
downloadcpython-5ff3f73d94305900c0773e67ebdd9701d856a0fe.zip
cpython-5ff3f73d94305900c0773e67ebdd9701d856a0fe.tar.gz
cpython-5ff3f73d94305900c0773e67ebdd9701d856a0fe.tar.bz2
try to call __bytes__ before __index__ (closes #16722)
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 7ba832e..509ea66 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.3.1?
Core and Builtins
-----------------
+- Issue #16722: In the bytes() constructor, try to call __bytes__ on the
+ argument before __index__.
+
- Issue #16602: When a weakref's target was part of a long deallocation
chain, the object could remain reachable through its weakref even though
its refcount had dropped to zero.