summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-02-17 00:45:01 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-02-17 00:45:01 (GMT)
commit54237f9feaefd209c2aaa5b4003810e69f6714f3 (patch)
treef6dc68eea09d8fd6f6115259723914296aa01d6c /Misc/NEWS
parent3584056ca58957a6adca060419e48a9488852550 (diff)
downloadcpython-54237f9feaefd209c2aaa5b4003810e69f6714f3.zip
cpython-54237f9feaefd209c2aaa5b4003810e69f6714f3.tar.gz
cpython-54237f9feaefd209c2aaa5b4003810e69f6714f3.tar.bz2
fix pydoc.apropos and pydoc.synopsis on modules with empty docstrings (#21548)
Patch by Yuyang Guo and Berker Peksag.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b453fe4..3f50594 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Core and Builtins
Library
-------
+- Issue #21548: Fix pydoc.synopsis() and pydoc.apropos() on modules with empty
+ docstrings.
+
- Issue #22885: Fixed arbitrary code execution vulnerability in the dbm.dumb
module. Original patch by Claudiu Popa.