Searched refs:rargs (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Lib/ |
D | optparse.py | 1257 self.rargs = None 1369 rargs = self._get_args(args) 1382 self.rargs = rargs 1387 stop = self._process_args(largs, rargs, values) 1391 args = largs + rargs 1407 def _process_args(self, largs, rargs, values): argument 1417 while rargs: 1418 arg = rargs[0] 1423 del rargs[0] 1427 self._process_long_opt(rargs, values) [all …]
|
/third_party/python/Lib/test/ |
D | test_optparse.py | 1181 rargs = parser_.rargs 1182 if len(rargs) < nargs: 1185 dest.append(tuple(rargs[0:nargs])) 1187 del rargs[0:nargs] 1248 rargs = parser.rargs 1249 while rargs: 1250 arg = rargs[0] 1256 del rargs[0]
|
/third_party/python/Doc/library/ |
D | optparse.rst | 1649 ``parser.rargs`` 1652 still there. Feel free to modify ``parser.rargs``, e.g. by consuming more 1822 for arg in parser.rargs: 1831 del parser.rargs[:len(value)]
|
/third_party/python/Doc/tools/ |
D | susp-ignored.csv | 183 library/optparse,,:len,"del parser.rargs[:len(value)]"
|