#9364: Improve the text printed by help(pydoc) and help(help).

This commit is contained in:
R David Murray 2014-04-19 12:59:30 -04:00
parent 658af31372
commit 3d050ddf19
2 changed files with 9 additions and 4 deletions

View file

@ -1,8 +1,9 @@
#!/usr/bin/env python3
"""Generate Python documentation in HTML or text for interactive use.
In the Python interpreter, do "from pydoc import help" to provide
help. Calling help(thing) on a Python object documents the object.
At the Python interactive prompt, calling help(thing) on a Python object
documents the object, and calling help() starts up an interactive
help session.
Or, at the shell command line outside of Python:
@ -1865,7 +1866,7 @@ has the same effect as typing a particular string at the help> prompt.
def intro(self):
self.output.write('''
Welcome to Python %s! This is the interactive help utility.
Welcome to Python %s's help utility!
If this is your first time using Python, you should definitely check out
the tutorial on the Internet at http://docs.python.org/%s/tutorial/.