From: Raymond Hettinger Date: Tue, 19 Apr 2011 18:10:43 +0000 (-0700) Subject: Issue 11875: Keep OrderedDict's __reduce__ from temporarily mutating the object. X-Git-Tag: v3.2.1b1~102 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1cc986e4a7ef3d1d535f045069710f11f67d5a22;p=python Issue 11875: Keep OrderedDict's __reduce__ from temporarily mutating the object. --- 1cc986e4a7ef3d1d535f045069710f11f67d5a22 diff --cc Misc/NEWS index c1fb1649d9,1885fb73cf..fe6ba0194b --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -60,14 -60,11 +60,17 @@@ Core and Builtin Library ------- +- Issue #11768: The signal handler of the signal module only calls + Py_AddPendingCall() for the first signal to fix a deadlock on reentrant or + parallel calls. PyErr_SetInterrupt() writes also into the wake up file. + +- Issue #11492: fix several issues with header folding in the email package. + - Issue #11852: Add missing imports and update tests. + - Issue #11875: collections.OrderedDict's __reduce__ was temporarily + mutating the object instead of just working on a copy. + - Issue #11467: Fix urlparse behavior when handling urls which contains scheme specific part only digits. Patch by Santoso Wijaya.