diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2010-03-23 08:46:31 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2010-03-23 08:46:31 (GMT) |
commit | 67b4e187e14996336d610d4301f86df3f4a49c27 (patch) | |
tree | cc011a876cfb939a7ac31b07723ff30186621c1b /Doc | |
parent | 996e88a7d5dc94f060ef7be7d5235419841a492d (diff) | |
download | cpython-67b4e187e14996336d610d4301f86df3f4a49c27.zip cpython-67b4e187e14996336d610d4301f86df3f4a49c27.tar.gz cpython-67b4e187e14996336d610d4301f86df3f4a49c27.tar.bz2 |
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 e40ffff..50c62aa 100644 --- a/Doc/library/optparse.rst +++ b/Doc/library/optparse.rst @@ -767,7 +767,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: |