From: Raymond Hettinger Date: Tue, 19 Apr 2011 18:04:44 +0000 (-0700) Subject: Issue 11875: Keep OrderedDict's __reduce__ from temporarily mutating the object. X-Git-Tag: v3.3.0a1~2556 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=98c850a398569de67c2428acd0396bbdc4c2b02f;p=python Issue 11875: Keep OrderedDict's __reduce__ from temporarily mutating the object. --- 98c850a398569de67c2428acd0396bbdc4c2b02f diff --cc Misc/NEWS index 62eb3ab2d1,1885fb73cf..27be0ccdf4 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -110,17 -60,11 +110,20 @@@ Core and Builtin Library ------- +- Issue #11731: simplify/enhance email parser/generator API by introducing + policy objects. + +- 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.