diff options
author | Raymond Hettinger <python@rcn.com> | 2011-01-19 04:43:45 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-01-19 04:43:45 (GMT) |
commit | 89c1cd1fdd850df7d276d32be8b6e6f5f2b161a8 (patch) | |
tree | 8def330f1169588cd1332cb1584297034c4644e0 | |
parent | c1dfa2e7c338084cc87654613597e6a9b575f34d (diff) | |
download | cpython-89c1cd1fdd850df7d276d32be8b6e6f5f2b161a8.zip cpython-89c1cd1fdd850df7d276d32be8b6e6f5f2b161a8.tar.gz cpython-89c1cd1fdd850df7d276d32be8b6e6f5f2b161a8.tar.bz2 |
Expand entry for pydoc.
-rw-r--r-- | Doc/whatsnew/3.2.rst | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index 89d3a91..ef31609 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -1415,9 +1415,11 @@ inspect pydoc ----- -The :mod:`pydoc` module now provides a much-improved Web server interface, -as well as a new command-line option to automatically open a browser -window to display that server. +The :mod:`pydoc` module now provides a much-improved Web server interface, as +well as a new command-line option ``-b`` to automatically open a browser window +to display that server:: + + $ pydoc3.2 -b (Contributed by Ron Adam; :issue:`2001`.) |