summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-04-22 13:30:10 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-04-22 13:30:10 (GMT)
commit7062db8a999e00fe6449b1f620801b5a857117b7 (patch)
tree5ae485dd57af8790ea28c3774ad47216f1a4f73e /Misc
parent945c17f5ec2b61d200be5114bc3ef37cd1bdd391 (diff)
downloadcpython-7062db8a999e00fe6449b1f620801b5a857117b7.zip
cpython-7062db8a999e00fe6449b1f620801b5a857117b7.tar.gz
cpython-7062db8a999e00fe6449b1f620801b5a857117b7.tar.bz2
Issue #8496: make mailcap.lookup() always return a list, rather than an iterator.
Patch by Gregory Nofi.
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 4697370..a305a0d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -326,6 +326,9 @@ C-API
Library
-------
+- Issue #8496: make mailcap.lookup() always return a list, rather than an
+ iterator. Patch by Gregory Nofi.
+
- Issue #8195: Fix a crash in sqlite Connection.create_collation() if the
collation name contains a surrogate character.