summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-04-27 21:04:19 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-04-27 21:04:19 (GMT)
commit57f3d93552edf5f4f5d5e8fad5aff9f72788bc7a (patch)
treecdebad863f87fa2560aa2c99de8c5f9208554f98 /Misc/NEWS
parent58c8c262f82bf82fe337089685ef14f35a8701b5 (diff)
downloadcpython-57f3d93552edf5f4f5d5e8fad5aff9f72788bc7a.zip
cpython-57f3d93552edf5f4f5d5e8fad5aff9f72788bc7a.tar.gz
cpython-57f3d93552edf5f4f5d5e8fad5aff9f72788bc7a.tar.bz2
Merged revisions 72045 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72045 | antoine.pitrou | 2009-04-27 22:50:20 +0200 (lun., 27 avril 2009) | 5 lines Issue #5853: calling a function of the mimetypes module from several threads at once could hit the recursion limit if the mimetypes database hadn't been initialized before. ........
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index aabefdc..8e1bd4e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -92,6 +92,10 @@ Installation
Library
-------
+- Issue #5853: calling a function of the mimetypes module from several threads
+ at once could hit the recursion limit if the mimetypes database hadn't been
+ initialized before.
+
- Issue #5854: Updated __all__ to include some missing names and remove some
names which should not be exported.