summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-04-11 19:42:59 (GMT)
committerRaymond Hettinger <python@rcn.com>2011-04-11 19:42:59 (GMT)
commit2498c9f06e4adfa121e169127f2a729e8ef3250b (patch)
treeeb14640218c9f3e04e75023d586b5f09bfa49b74 /Misc
parenta3359eec7d96237eff157e513ccfd5c5370088bc (diff)
parent49353d0e8f1faf526e7bc90d7422b3e050ad74bb (diff)
downloadcpython-2498c9f06e4adfa121e169127f2a729e8ef3250b.zip
cpython-2498c9f06e4adfa121e169127f2a729e8ef3250b.tar.gz
cpython-2498c9f06e4adfa121e169127f2a729e8ef3250b.tar.bz2
Issue #11747: Fix range formatting in context and unified diffs.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d02a22e..34369cf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -109,6 +109,9 @@ Library
- 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.