summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-12-19 21:28:46 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-12-19 21:28:46 (GMT)
commit7643c92cdd0e8a3cfd83be9edae3964097b63f0e (patch)
tree2eccc052cc4b4d7e8f51f152c601a5dc48bb53b7 /Misc
parentaf5e29a769c1db9c1dd24b6d7344b9c6e0f2713f (diff)
parent5ff3f73d94305900c0773e67ebdd9701d856a0fe (diff)
downloadcpython-7643c92cdd0e8a3cfd83be9edae3964097b63f0e.zip
cpython-7643c92cdd0e8a3cfd83be9edae3964097b63f0e.tar.gz
cpython-7643c92cdd0e8a3cfd83be9edae3964097b63f0e.tar.bz2
merge 3.3 (#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 7890f64..77db4e1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.4.0 Alpha 1?
Core and Builtins
-----------------
+- Issue #16722: In the bytes() constructor, try to call __bytes__ on the
+ argument before __index__.
+
- Issue #16421: loading multiple modules from one shared object is now
handled correctly (previously, the first module loaded from that file
was silently returned). Patch by Václav Šmilauer.