Home
last modified time | relevance | path

Searched refs:GetoptError (Results 1 – 25 of 34) sorted by relevance

12

/external/python/cpython2/Lib/
Dgetopt.py38 class GetoptError(Exception): class
49 error = GetoptError # backward compatibility
156 raise GetoptError('option --%s requires argument' % opt, opt)
159 raise GetoptError('option --%s must not have an argument' % opt, opt)
169 raise GetoptError('option --%s not recognized' % opt, opt)
179 raise GetoptError('option --%s not a unique prefix' % opt, opt)
193 raise GetoptError('option -%s requires argument' % opt,
206 raise GetoptError('option -%s not recognized' % opt, opt)
/external/python/cpython2/Tools/scripts/
Dfindlinksto.py16 raise getopt.GetoptError('not enough arguments', None)
17 except getopt.GetoptError, msg:
/external/python/cpython2/Doc/library/
Dgetopt.rst53 will not match uniquely, so :exc:`GetoptError` will be raised.
80 .. exception:: GetoptError
91 Introduced :exc:`GetoptError` as a synonym for :exc:`error`.
96 Alias for :exc:`GetoptError`; for backward compatibility.
130 except getopt.GetoptError as err:
/external/python/cpython2/Lib/test/
Dtest_getopt.py22 self.assertRaises(getopt.GetoptError, *args, **kwargs)
181 self.assertRaises(getopt.GetoptError, getopt.getopt, ['--help='], '', ['help'])
/external/python/cpython2/Mac/scripts/
Dcachersrc.py30 except (getopt.GetoptError, NoArgsError):
Dbuildpkg.py454 except getopt.GetoptError, details:
/external/autotest/server/samples/
Drun_test.srv23 except getopt.GetoptError, e:
/external/lisa/tools/scripts/
Dodroid_sampler.py71 except getopt.GetoptError as err:
/external/libvpx/libvpx/tools/
Dall_builds.py42 except getopt.GetoptError, err:
/external/fonttools/MetaTools/
DroundTrip.py71 except getopt.GetoptError:
/external/autotest/contrib/
Dmodelviz.py183 except getopt.GetoptError, error:
/external/wpa_supplicant_8/wpa_supplicant/examples/p2p/
Dp2p_flush.py124 except getopt.GetoptError:
Dp2p_listen.py125 except getopt.GetoptError:
Dp2p_disconnect.py124 except getopt.GetoptError:
Dp2p_stop_find.py129 except getopt.GetoptError:
Dp2p_find.py135 except getopt.GetoptError:
Dp2p_invite.py153 except getopt.GetoptError:
Dp2p_group_add.py171 except getopt.GetoptError:
Dp2p_connect.py238 except getopt.GetoptError:
/external/icu/icu4c/source/tools/
Dicu-svnprops-check.py196 except getopt.GetoptError:
/external/ltp/testcases/realtime/tools/
Dftqviz.py131 except GetoptError:
/external/python/cpython2/Doc/tools/
Drstlint.py141 except getopt.GetoptError:
/external/skia/bench/
Dcheck_bench_regressions.py199 except getopt.GetoptError, err:
/external/fonttools/Lib/fontTools/
Dttx.py257 except getopt.GetoptError:
/external/autotest/client/tools/
Dhtml_report.py1757 except getopt.GetoptError:

12