summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-11-06 00:27:14 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2015-11-06 00:27:14 (GMT)
commit9ad0aae6566311c6982a20955381cda5a2954519 (patch)
treee0215a04b7c80e95c549874cfbfaadf946587277 /Misc
parentade0412613f7628e34d947168cd5f447fa6b8f17 (diff)
downloadcpython-9ad0aae6566311c6982a20955381cda5a2954519.zip
cpython-9ad0aae6566311c6982a20955381cda5a2954519.tar.gz
cpython-9ad0aae6566311c6982a20955381cda5a2954519.tar.bz2
Issue #18010: Fix pydoc web server search to handle package exceptions
Implementation by Antoine Pitrou.
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 a7029a6..d477370 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -96,6 +96,9 @@ Core and Builtins
Library
-------
+- Issue #18010: Fix the pydoc web server's module search function to handle
+ exceptions from importing packages.
+
- Issue #25510: fileinput.FileInput.readline() now returns b'' instead of ''
at the end if the FileInput was opened with binary mode.
Patch by Ryosuke Ito.