Issue #28455: Clarify example of overriding the convert_arg_line_to_args method

Patch by Mariatta Wijaya.
This commit is contained in:
Berker Peksag 2016-10-17 06:14:17 +03:00
parent 8d761ff045
commit 5493e4723a
1 changed files with 4 additions and 3 deletions

View File

@ -1958,10 +1958,11 @@ Customizing file parsing
The method is called once per line read from the argument file, in order.
A useful override of this method is one that treats each space-separated word
as an argument::
as an argument. The following example demonstrates how to do this::
def convert_arg_line_to_args(self, arg_line):
return arg_line.split()
class MyArgumentParser(argparse.ArgumentParser):
def convert_arg_line_to_args(self, arg_line):
return arg_line.split()
Exiting methods