summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-03-23 11:00:53 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-03-23 11:00:53 (GMT)
commit5b58f5e5091ad9306b459d586b699c57d512ba40 (patch)
treef5aba710d9fa977188718c19140b0363416fb6d2 /Doc/library
parent0af9398d27e323bf52d4ead678e3d7c69c383848 (diff)
downloadcpython-5b58f5e5091ad9306b459d586b699c57d512ba40.zip
cpython-5b58f5e5091ad9306b459d586b699c57d512ba40.tar.gz
cpython-5b58f5e5091ad9306b459d586b699c57d512ba40.tar.bz2
Merged revisions 79329 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r79329 | senthil.kumaran | 2010-03-23 14:16:31 +0530 (Tue, 23 Mar 2010) | 2 lines Fixed Issue8209 - OptionParser keyword arg 'epilog' not mentioned in the docs ........
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/optparse.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/optparse.rst b/Doc/library/optparse.rst
index 918e3f8..90c28a0 100644
--- a/Doc/library/optparse.rst
+++ b/Doc/library/optparse.rst
@@ -762,7 +762,8 @@ The first step in using :mod:`optparse` is to create an OptionParser instance.
The string to use when expanding ``"%prog"`` in ``usage`` and ``version``
instead of ``os.path.basename(sys.argv[0])``.
-
+ ``epilog`` (default: ``None``)
+ A paragraph of help text to print after the option help.
.. _optparse-populating-parser: