diff options
author | Georg Brandl <georg@python.org> | 2008-01-06 17:21:00 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-01-06 17:21:00 (GMT) |
commit | 27a2d1332b94158485c850dbae9cbc9d50160e19 (patch) | |
tree | 8359a1a80e164976318eba3a833dd706887384e9 /Doc | |
parent | e260ba2d3322b4b97ddd200e1058d80bbba7cb9d (diff) | |
download | cpython-27a2d1332b94158485c850dbae9cbc9d50160e19.zip cpython-27a2d1332b94158485c850dbae9cbc9d50160e19.tar.gz cpython-27a2d1332b94158485c850dbae9cbc9d50160e19.tar.bz2 |
Fix introductory sentence.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/getopt.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/getopt.rst b/Doc/library/getopt.rst index 088e1fa..31bd911 100644 --- a/Doc/library/getopt.rst +++ b/Doc/library/getopt.rst @@ -11,7 +11,7 @@ This module helps scripts to parse the command line arguments in ``sys.argv``. It supports the same conventions as the Unix :cfunc:`getopt` function (including the special meanings of arguments of the form '``-``' and '``--``'). Long options similar to those supported by GNU software may be used as well via an -optional third argument. This module provides a single function and an +optional third argument. This module provides two functions and an exception: |