mirror of
https://github.com/python/cpython.git
synced 2025-09-18 14:40:43 +00:00
Closes #15162: the meaning of "online" has shifted a bit in recent years, use "interactive" instead.
This commit is contained in:
parent
dbab58fdeb
commit
c645c6ada1
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
"""Generate Python documentation in HTML or text for interactive use.
|
"""Generate Python documentation in HTML or text for interactive use.
|
||||||
|
|
||||||
In the Python interpreter, do "from pydoc import help" to provide online
|
In the Python interpreter, do "from pydoc import help" to provide
|
||||||
help. Calling help(thing) on a Python object documents the object.
|
help. Calling help(thing) on a Python object documents the object.
|
||||||
|
|
||||||
Or, at the shell command line outside of Python:
|
Or, at the shell command line outside of Python:
|
||||||
|
@ -1838,7 +1838,7 @@ has the same effect as typing a particular string at the help> prompt.
|
||||||
|
|
||||||
def intro(self):
|
def intro(self):
|
||||||
self.output.write('''
|
self.output.write('''
|
||||||
Welcome to Python %s! This is the online help utility.
|
Welcome to Python %s! This is the interactive help utility.
|
||||||
|
|
||||||
If this is your first time using Python, you should definitely check out
|
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/.
|
the tutorial on the Internet at http://docs.python.org/%s/tutorial/.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue