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.