[issue21548] pydoc -k IndexError on empty docstring

2015-02-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset 43641e03692a by Berker Peksag in branch '2.7': Issue #21548: Fix pydoc.synopsis() and pydoc.apropos() on modules with empty https://hg.python.org/cpython/rev/43641e03692a -- ___ Python tracker

[issue21548] pydoc -k IndexError on empty docstring

2015-02-20 Thread Berker Peksag
Changes by Berker Peksag berker.pek...@gmail.com: -- resolution: - fixed stage: commit review - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21548 ___

[issue21548] pydoc -k IndexError on empty docstring

2015-02-16 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: LGTM. -- nosy: +serhiy.storchaka stage: patch review - commit review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21548 ___

[issue21548] pydoc -k IndexError on empty docstring

2015-02-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9436f43b6df2 by Benjamin Peterson in branch '3.4': fix pydoc.apropos and pydoc.synopsis on modules with empty docstrings (#21548) https://hg.python.org/cpython/rev/9436f43b6df2 New changeset 534b26837a13 by Benjamin Peterson in branch 'default':

[issue21548] pydoc -k IndexError on empty docstring

2015-01-24 Thread Berker Peksag
Berker Peksag added the comment: Here's a patch with tests. -- nosy: +berker.peksag stage: - patch review Added file: http://bugs.python.org/file37841/issue21548.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21548

[issue21548] pydoc -k IndexError on empty docstring

2014-06-07 Thread Yuyang Guo
Yuyang Guo added the comment: Made change based on Terry J. Reedy's suggestion -- keywords: +patch nosy: +Yuyang.Guo Added file: http://bugs.python.org/file35516/issue21548.patch ___ Python tracker rep...@bugs.python.org

[issue21548] pydoc -k IndexError on empty docstring

2014-06-07 Thread Benjamin Peterson
Benjamin Peterson added the comment: Thanks for the patch! It looks like the synopsis function also has this bug. Could you fix that, too? -- nosy: +benjamin.peterson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21548

[issue21548] pydoc -k IndexError on empty docstring

2014-06-01 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- keywords: +easy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21548 ___ ___ Python-bugs-list

[issue21548] pydoc -k IndexError on empty docstring

2014-05-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: Replacing 2061 with the following should work for all versions. desc = module.__doc__.splitlines()[0] if module.__doc__ else '' -- nosy: +terry.reedy type: - behavior versions: +Python 2.7, Python 3.5 ___ Python

[issue21548] pydoc -k IndexError on empty docstring

2014-05-21 Thread Dima Tisnek
New submission from Dima Tisnek: While trying to track down another bug, I disabled some packages: [dima@bmg tmp]$ chmod a-x /usr/lib/python3.4/site-packages/speechd* Then ran pydoc -k: [dima@bmg tmp]$ pydoc3.4 -k n688954789 Traceback (most recent call last): File /usr/bin/pydoc3.4, line 5,