]> granicus.if.org Git - python/commitdiff
Add NEWS item for #5162.
authorbrian.curtin <brian@python.org>
Mon, 11 Apr 2011 23:18:20 +0000 (18:18 -0500)
committerbrian.curtin <brian@python.org>
Mon, 11 Apr 2011 23:18:20 +0000 (18:18 -0500)
1  2 
Misc/NEWS

diff --cc Misc/NEWS
index 02f75d4a8c98c11918501cc152be2399c8991c4f,19c1a9d3ef36282219890b64f37e395ad25c3f0c..c530cd8e39abe4d82c67d533515878266db39cc6
+++ 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.