Home
last modified time | relevance | path

Searched refs:arg_line (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/
Dargparse.py2003 for arg_line in args_file.read().splitlines():
2004 for arg in self.convert_arg_line_to_args(arg_line):
2017 def convert_arg_line_to_args(self, arg_line): argument
2018 return [arg_line]
/external/python/cpython2/Doc/library/
Dargparse.rst1882 .. method:: ArgumentParser.convert_arg_line_to_args(arg_line)
1889 This method takes a single argument *arg_line* which is a string read from
1896 def convert_arg_line_to_args(self, arg_line):
1897 return arg_line.split()
/external/python/cpython2/Lib/test/
Dtest_argparse.py1399 def convert_arg_line_to_args(self, arg_line): argument
1400 for arg in arg_line.split():