summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkrisvale <sweskman@gmail.com>2012-03-22 20:17:42 (GMT)
committerkrisvale <sweskman@gmail.com>2012-03-22 20:17:42 (GMT)
commit479c8f8c514e19e4ed0265d2935e9c4dfa3aef99 (patch)
treea68e47e51a7fe62a386637a9c06d1faffafda232
parent50b6778bda03096075b85af455a24750df6dc7e6 (diff)
downloadcpython-479c8f8c514e19e4ed0265d2935e9c4dfa3aef99.zip
cpython-479c8f8c514e19e4ed0265d2935e9c4dfa3aef99.tar.gz
cpython-479c8f8c514e19e4ed0265d2935e9c4dfa3aef99.tar.bz2
Issue #10538 - Update Misc/NEWS
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b39c1d6..f819029 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,11 @@ Core and Builtins
- Issue #13521: dict.setdefault() now does only one lookup for the given key,
making it "atomic" for many purposes. Patch by Filip GruszczyƄski.
+- Issue #10538: When using the "s*" code with PyArg_ParseTuple() to fill a
+ Py_buffer structure with data from an object supporting only the old
+ PyBuffer interface, a reference to the source objects is now properly added
+ to the Py_buffer.obj member.
+
Library
-------