We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fd55dd commit 061325eCopy full SHA for 061325e
Doc/library/argparse.rst
@@ -34,9 +34,9 @@ around an instance of :class:`argparse.ArgumentParser`. It is a container for
34
argument specifications and has options that apply to the parser as whole::
35
36
parser = argparse.ArgumentParser(
37
- prog = 'ProgramName',
38
- description = 'What the program does',
39
- epilog = 'Text at the bottom of help')
+ prog='ProgramName',
+ description='What the program does',
+ epilog='Text at the bottom of help')
40
41
The :meth:`ArgumentParser.add_argument` method attaches individual argument
42
specifications to the parser. It supports positional arguments, options that
0 commit comments