Home
last modified time | relevance | path

Searched refs:gnu_getopt (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_getopt.py119 opts, args = getopt.gnu_getopt(cmdline, 'ab:', ['alpha', 'beta='])
125 opts, args = getopt.gnu_getopt(['-a', '-', '-b', '-'], 'ab:', [])
130 opts, args = getopt.gnu_getopt(cmdline, '+ab:', ['alpha', 'beta='])
136 opts, args = getopt.gnu_getopt(cmdline, 'ab:', ['alpha', 'beta='])
/external/python/cpython2/Lib/
Dgetopt.py94 def gnu_getopt(args, shortopts, longopts = []): function
/external/python/cpython2/Doc/library/
Dgetopt.rst66 .. function:: gnu_getopt(args, options[, long_options])
/external/python/cpython2/Doc/whatsnew/
D2.3.rst1283 * The :mod:`getopt` module gained a new function, :func:`gnu_getopt`, that
1291 >>> getopt.gnu_getopt(['-f', 'filename', 'output', '-v'], 'f:v')
/external/python/cpython2/Misc/
DNEWS8651 - Issue #4458: getopt.gnu_getopt() now recognizes a single "-" as an argument,
DHISTORY5556 - getopt.gnu_getopt was added. This supports GNU-style option