]> granicus.if.org Git - python/commitdiff
Merged revisions 79333 via svnmerge from
authorSenthil Kumaran <orsenthil@gmail.com>
Mon, 29 Mar 2010 19:25:37 +0000 (19:25 +0000)
committerSenthil Kumaran <orsenthil@gmail.com>
Mon, 29 Mar 2010 19:25:37 +0000 (19:25 +0000)
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
  ........
................

Doc/library/optparse.rst

index e4174007a3a1d4049dec5babf645d5296e84cfff..8a5b9c2b3ba8b7653444a5ae67be017f221c8d85 100644 (file)
@@ -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: