[issue7124] idle.py -n : help() doesn't work in a reopened shell window

Sandro Tosi report at bugs.python.org
Tue Mar 29 22:18:35 CEST 2011


Sandro Tosi <sandro.tosi at gmail.com> added the comment:

Hi Gregor,
are you still able to replicate this bug? I just tried on a freshly built 3.3 and (hopefully correctly) following your description, I can print help just fine:

>>> help(print)
Help on built-in function print in module builtins:

print(...)
    print(value, ..., sep=' ', end='\n', file=sys.stdout)
    
    Prints the values to a stream, or to sys.stdout by default.
    Optional keyword arguments:
    file: a file-like object (stream); defaults to the current sys.stdout.
    sep:  string inserted between values, default a space.
    end:  string appended after the last value, default a newline.

>>>

----------
nosy: +sandro.tosi
versions: +Python 3.3

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


More information about the Python-bugs-list mailing list