Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/test/
Dtest_getopt.py25 self.assertTrue(getopt.short_has_arg('a', 'a:'))
26 self.assertFalse(getopt.short_has_arg('a', 'a'))
27 self.assertError(getopt.short_has_arg, 'a', 'b')
/external/python/cpython2/Lib/
Dgetopt.py190 if short_has_arg(opt, shortopts):
202 def short_has_arg(opt, shortopts): function