diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2010-03-29 19:25:37 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2010-03-29 19:25:37 (GMT) |
commit | 8935ed952485587bf43cd4e0e15323900df84770 (patch) | |
tree | 637a2825b625eee311fc58aa173757750b11b57b /Doc | |
parent | af9ab377d39b5b2ec37a79889cd644e5b02ff3fb (diff) | |
download | cpython-8935ed952485587bf43cd4e0e15323900df84770.zip cpython-8935ed952485587bf43cd4e0e15323900df84770.tar.gz cpython-8935ed952485587bf43cd4e0e15323900df84770.tar.bz2 |
Merged revisions 79333 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r79333 | senthil.kumaran | 2010-03-23 16:30:53 +0530 (Tue, 23 Mar 2010) | 9 lines
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')
-rw-r--r-- | Doc/library/optparse.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/optparse.rst b/Doc/library/optparse.rst index e417400..8a5b9c2 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: |