]> granicus.if.org Git - python/commitdiff
pydoc.pager does not promise to use $PAGER.
authorGeorg Brandl <georg@python.org>
Mon, 19 Jul 2010 08:02:46 +0000 (08:02 +0000)
committerGeorg Brandl <georg@python.org>
Mon, 19 Jul 2010 08:02:46 +0000 (08:02 +0000)
Doc/library/pdb.rst
Lib/pdb.py

index 9d57bbca0d07d9f19ad068e9cf8b738bd2b9d5b2..d8dc3663512dea9201427eece1430b9c2a8cbd4b 100644 (file)
@@ -207,10 +207,9 @@ by the local file.
 
    Without argument, print the list of available commands.  With a *command* as
    argument, print help about that command.  ``help pdb`` displays the full
-   documentation (the docstring of the :mod:`pdb` module); if the environment
-   variable :envvar:`PAGER` is defined, the string is piped through that command
-   instead.  Since the *command* argument must be an identifier, ``help exec``
-   must be entered to get help on the ``!`` command.
+   documentation (the docstring of the :mod:`pdb` module).  Since the *command*
+   argument must be an identifier, ``help exec`` must be entered to get help on
+   the ``!`` command.
 
 .. pdbcommand:: w(here)
 
index b93a5af25cdc8243e898539c8d4bff758816ae15..5b12ffa20988173d60bff67a74c4aff86c2ac816 100755 (executable)
@@ -1123,7 +1123,7 @@ class Pdb(bdb.Bdb, cmd.Cmd):
         print("""h(elp)
 Without argument, print the list of available commands.
 With a command name as argument, print help about that command
-"help pdb" pipes the full documentation file to the $PAGER
+"help pdb" shows the full pdb documentation
 "help exec" gives help on the ! command""", file=self.stdout)
 
     def help_where(self):