[Python-checkins] cpython: Closes #15162: the meaning of "online" has shifted a bit in recent years, use

georg.brandl python-checkins at python.org
Sun Jun 24 17:25:43 CEST 2012


http://hg.python.org/cpython/rev/1ff29f3b8da7
changeset:   77721:1ff29f3b8da7
user:        Georg Brandl <georg at python.org>
date:        Sun Jun 24 17:24:26 2012 +0200
summary:
  Closes #15162: the meaning of "online" has shifted a bit in recent years, use "interactive" instead.

files:
  Lib/pydoc.py |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Lib/pydoc.py b/Lib/pydoc.py
--- 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 @@
 
     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/.

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list