fix pydoc.apropos and pydoc.synopsis on modules with empty docstrings (#21548)

Patch by Yuyang Guo and Berker Peksag.
This commit is contained in:
Benjamin Peterson 2015-02-16 19:45:01 -05:00
parent 3584056ca5
commit 54237f9fea
4 changed files with 38 additions and 2 deletions

View file

@ -506,6 +506,7 @@ Eric Groo
Dag Gruneau
Filip Gruszczyński
Thomas Guettler
Yuyang Guo
Anuj Gupta
Michael Guravage
Lars Gustäbel

View file

@ -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.