[issue8887] “pydoc str” works but not “pydoc str.translate”

Alexander Belopolsky report at bugs.python.org
Sat Jun 12 04:00:02 CEST 2010


Alexander Belopolsky <belopolsky at users.sourceforge.net> added the comment:

Note that

>>> help(str.translate)
Help on method_descriptor:

translate(...)
    S.translate(table) -> str
    
    Return a copy of the string S, where all characters have been mapped
..

but
>>> help('str.translate')
no Python documentation found for 'str.translate'

----------
nosy: +belopolsky

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue8887>
_______________________________________


More information about the Python-bugs-list mailing list