summaryrefslogtreecommitdiff
path: root/Lib/pydoc.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-06-24 17:24:26 +0200
committerGeorg Brandl <georg@python.org>2012-06-24 17:24:26 +0200
commitc645c6ada1d398fb8e1aebcff5fd8b51ca86b28f (patch)
tree77f7133d314f8a5b15848807f59a3351ab1783a9 /Lib/pydoc.py
parentdbab58fdeb5716d761481b56438ba1a2d9977b41 (diff)
downloadcpython-git-c645c6ada1d398fb8e1aebcff5fd8b51ca86b28f.tar.gz
Closes #15162: the meaning of "online" has shifted a bit in recent years, use "interactive" instead.
Diffstat (limited to 'Lib/pydoc.py')
-rwxr-xr-xLib/pydoc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/pydoc.py b/Lib/pydoc.py
index 8beedc1892..4aa48e5e34 100755
--- a/Lib/pydoc.py
+++ b/Lib/pydoc.py
@@ -1,7 +1,7 @@
#!/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 online
+In the Python interpreter, do "from pydoc import help" to provide
help. Calling help(thing) on a Python object documents the object.
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):
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
the tutorial on the Internet at http://docs.python.org/%s/tutorial/.