summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2012-04-23 17:23:57 (GMT)
committerR David Murray <rdmurray@bitdance.com>2012-04-23 17:23:57 (GMT)
commitc43125a05cc2f942ae8ba372b1dbe2e2e75d446a (patch)
treef93bb56c150958e958682b48c6aabdf66e22359b /Misc
parent88ec6209cfd0c691df596f681144e1e7c5206dd9 (diff)
downloadcpython-c43125a05cc2f942ae8ba372b1dbe2e2e75d446a.zip
cpython-c43125a05cc2f942ae8ba372b1dbe2e2e75d446a.tar.gz
cpython-c43125a05cc2f942ae8ba372b1dbe2e2e75d446a.tar.bz2
#14638: pydoc now treats non-str __name__ as None instead of raising
Original patch by Peter Otten.
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 fddcb7c..6feb4da 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -50,6 +50,9 @@ Core and Builtins
Library
-------
+- Issue #14638: pydoc now treats non-string __name__ values as if they
+ were missing, instead of raising an error.
+
- Issue #13684: Fix httplib tunnel issue of infinite loops for certain sites
which send EOF without trailing \r\n.