commit | 2c316a3e298b072f1f017cd3ba197905c43af926 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Sat Jun 25 17:14:53 2011 +0200 |
committer | Raymond Hettinger <python@rcn.com> | Sat Jun 25 17:14:53 2011 +0200 |
tree | 6ce8f1e219f00dd0d6c8154d25b75168af509689 | |
parent | fd1cb59618b6093d88a6c2f1ffea1656e87dfce3 [diff] [blame] |
Issue 11802: filecmp cache was growing without bound.
diff --git a/Misc/NEWS b/Misc/NEWS index bddddfa..9e0b8f4 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -16,6 +16,9 @@ Library ------- +- Issue #11802: The cache in filecmp now has a maximum size of 100 so that + it won't grow without bound. + - Issue #12404: Remove C89 incompatible code from mmap module. Patch by Akira Kitada.