diff options
author | Raymond Hettinger <python@rcn.com> | 2014-06-21 18:27:36 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2014-06-21 18:27:36 (GMT) |
commit | 4575010943c7a6013fad39a9c31e07e3c498a3ce (patch) | |
tree | 15f224cdbcca568e0be6d6fed374e126638049e9 /Misc | |
parent | 94919a44a26b135108788f5a7bd5604189c3febe (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |