summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-03-02 03:42:39 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-03-02 03:42:39 (GMT)
commite392b4ff112fed3abc06809ecf8f49fc1ca02813 (patch)
treec6023760e160f591154794424b82d9f5bc241271 /Misc
parent4a9fda4280e67aea543d2879e8c2e62ef46b0993 (diff)
downloadcpython-e392b4ff112fed3abc06809ecf8f49fc1ca02813.zip
cpython-e392b4ff112fed3abc06809ecf8f49fc1ca02813.tar.gz
cpython-e392b4ff112fed3abc06809ecf8f49fc1ca02813.tar.bz2
Merged revisions 70086 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r70086 | benjamin.peterson | 2009-03-01 21:35:12 -0600 (Sun, 01 Mar 2009) | 1 line fix a silly problem of caching gone wrong #5401 ........
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 f2bebd6..64e9dee 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -89,6 +89,9 @@ Core and Builtins
Library
-------
+- Issue #5401: Fixed a performance problem in mimetypes when ``from mimetypes
+ import guess_extension`` was used.
+
- Issue #1733986: Fixed mmap crash in accessing elements of second map object
with same tagname but larger size than first map. (Windows)