Searched refs:gnu_getopt (Results 1 – 5 of 5) sorted by relevance
/third_party/python/Lib/test/ |
D | test_getopt.py | 120 opts, args = getopt.gnu_getopt(cmdline, 'ab:', ['alpha', 'beta=']) 126 opts, args = getopt.gnu_getopt(['-a', '-', '-b', '-'], 'ab:', []) 131 opts, args = getopt.gnu_getopt(cmdline, '+ab:', ['alpha', 'beta=']) 137 opts, args = getopt.gnu_getopt(cmdline, 'ab:', ['alpha', 'beta='])
|
/third_party/python/Lib/ |
D | getopt.py | 99 def gnu_getopt(args, shortopts, longopts = []): function
|
/third_party/python/Doc/library/ |
D | getopt.rst | 66 .. function:: gnu_getopt(args, shortopts, longopts=[])
|
/third_party/python/Doc/whatsnew/ |
D | 2.3.rst | 1283 * The :mod:`getopt` module gained a new function, :func:`gnu_getopt`, that 1291 >>> getopt.gnu_getopt(['-f', 'filename', 'output', '-v'], 'f:v')
|
/third_party/python/Misc/ |
D | HISTORY | 15854 - Issue #4458: getopt.gnu_getopt() now recognizes a single "-" as an argument, 22940 - getopt.gnu_getopt was added. This supports GNU-style option
|