From: brian.curtin Date: Mon, 11 Apr 2011 23:18:20 +0000 (-0500) Subject: Add NEWS item for #5162. X-Git-Tag: v3.2.1b1~149 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f7eac1ffb4e24e84a3bd679a258183a05926e3a8;p=python Add NEWS item for #5162. --- f7eac1ffb4e24e84a3bd679a258183a05926e3a8 diff --cc Misc/NEWS index 02f75d4a8c,19c1a9d3ef..c530cd8e39 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -53,19 -48,8 +53,22 @@@ Core and Builtin Library ------- - - Issue #5162: Treat services like frozen executables to allow child spawning - from multiprocessing.forking on Windows. ++- Issue #5162: Treat services like frozen executables to allow child spawning ++ from multiprocessing.forking on Windows. ++ +- Issue #11814: Fix likely typo in multiprocessing.Pool._terminate(). + +- Issue #11747: Fix range formatting in difflib.context_diff() and + difflib.unified_diff(). + +- Issue #8428: Fix a race condition in multiprocessing.Pool when terminating + worker processes: new processes would be spawned while the pool is being + shut down. Patch by Charles-François Natali. + +- Issue #7311: fix html.parser to accept non-ASCII attribute values. + +- Issue #11605: email.parser.BytesFeedParser was incorrectly converting multipart + subpararts with an 8bit CTE into unicode instead of preserving the bytes. - Issue #10963: Ensure that subprocess.communicate() never raises EPIPE.