MCPcopy Index your code
hub / github.com/python/cpython / _get_args

Method _get_args

Lib/optparse.py:1339–1343  ·  view source on GitHub ↗
(self, args)

Source from the content-addressed store, hash-verified

1337 # -- Option-parsing methods ----------------------------------------
1338
1339 def _get_args(self, args):
1340 if args is None:
1341 return sys.argv[1:]
1342 else:
1343 return args[:] # don't modify caller's list
1344
1345 def parse_args(self, args=None, values=None):
1346 """

Callers 1

parse_argsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected