summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorKristján Valur Jónsson <sweskman@gmail.com>2013-03-20 00:17:47 (GMT)
committerKristján Valur Jónsson <sweskman@gmail.com>2013-03-20 00:17:47 (GMT)
commit9795ca44fbf6d94789ee7053b81ff18f008c41ea (patch)
tree0aa7878e2ea987a574f5d9ad4090c0a0f8f0437d /Misc
parent1d108bc7148336f01d6df066ba1b27678c9bd1ca (diff)
downloadcpython-9795ca44fbf6d94789ee7053b81ff18f008c41ea.zip
cpython-9795ca44fbf6d94789ee7053b81ff18f008c41ea.tar.gz
cpython-9795ca44fbf6d94789ee7053b81ff18f008c41ea.tar.bz2
Issue #10212: Support new buffer interface for struct.unpack and
cStringIO
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f309e6f..1f3601c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -9,6 +9,8 @@ What's New in Python 2.7.4
Core and Builtins
-----------------
+- Issue #10211: Buffer objects expose the new buffer interface internally
+
- Issue #16445: Fixed potential segmentation fault when deleting an exception
message.
@@ -214,6 +216,8 @@ Core and Builtins
Library
-------
+- Issue #10212: cStringIO and struct.unpack support new buffer objects.
+
- Issue #12098: multiprocessing on Windows now starts child processes
using the same sys.flags as the current process. Initial patch by
Sergey Mezentsev.