diff options
author | Georg Brandl <georg@python.org> | 2009-12-28 08:48:24 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-12-28 08:48:24 (GMT) |
commit | 66d8d69cd8754b76cb36a041d1c37e72b188378f (patch) | |
tree | 89c51a611bd20695a78d73f2401b19fb1ccbdb34 /Doc | |
parent | 740cdc3a9f9593ee1fe86d751c70b8505d6a19c9 (diff) | |
download | cpython-66d8d69cd8754b76cb36a041d1c37e72b188378f.zip cpython-66d8d69cd8754b76cb36a041d1c37e72b188378f.tar.gz cpython-66d8d69cd8754b76cb36a041d1c37e72b188378f.tar.bz2 |
#7404: remove reference to non-existing example files.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/optparse.rst | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Doc/library/optparse.rst b/Doc/library/optparse.rst index 5ac11c3..9b39869 100644 --- a/Doc/library/optparse.rst +++ b/Doc/library/optparse.rst @@ -157,9 +157,7 @@ required option an option that must be supplied on the command-line; note that the phrase "required option" is self-contradictory in English. :mod:`optparse` doesn't prevent you from implementing required options, but doesn't give you much - help at it either. See ``examples/required_1.py`` and - ``examples/required_2.py`` in the :mod:`optparse` source distribution for two - ways to implement required options with :mod:`optparse`. + help at it either. For example, consider this hypothetical command-line:: |