summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2014-06-21 18:27:36 (GMT)
committerRaymond Hettinger <python@rcn.com>2014-06-21 18:27:36 (GMT)
commit4575010943c7a6013fad39a9c31e07e3c498a3ce (patch)
tree15f224cdbcca568e0be6d6fed374e126638049e9 /Misc
parent94919a44a26b135108788f5a7bd5604189c3febe (diff)
downloadcpython-4575010943c7a6013fad39a9c31e07e3c498a3ce.zip
cpython-4575010943c7a6013fad39a9c31e07e3c498a3ce.tar.gz
cpython-4575010943c7a6013fad39a9c31e07e3c498a3ce.tar.bz2
Issue 21635: Fix caching in difflib.SequenceMatcher.get_matching_blocks().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6cd1bd2..664eba7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -31,6 +31,10 @@ Library
- Issue #21491: SocketServer: Fix a race condition in child processes reaping.
+- Issue #21635: The difflib SequenceMatcher.get_matching_blocks() method
+ cache didn't match the actual result. The former was a list of tuples
+ and the latter was a list of named tuples.
+
- Issue #21722: The distutils "upload" command now exits with a non-zero
return code when uploading fails. Patch by Martin Dengler.