From: krisvale Date: Thu, 22 Mar 2012 20:17:42 +0000 (+0000) Subject: Issue #10538 - Update Misc/NEWS X-Git-Tag: v2.7.4rc1~950 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=479c8f8c514e19e4ed0265d2935e9c4dfa3aef99;p=python Issue #10538 - Update Misc/NEWS --- diff --git a/Misc/NEWS b/Misc/NEWS index b39c1d694a..f8190298db 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 -------