Home
last modified time | relevance | path

Searched refs:short_option (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Lib/distutils/
Dfancy_getopt.py98 def add_option (self, long_option, short_option=None, help_string=None): argument
103 option = (long_option, short_option, help_string)
/external/python/cpython2/Doc/distutils/
Dapiref.rst1320 Wrapper function. *options* is a list of ``(long_option, short_option,
1337 The option_table is a list of 3-tuples: ``(long_option, short_option,
1341 *short_option* should just be a single character, no ``':'`` in any case.
1342 *short_option* should be ``None`` if a *long_option* doesn't have a
1343 corresponding *short_option*. All option tuples must have long options.