File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,9 @@ Argument Processing
99
10101. Parsing input and quoted strings like the Unix shell
11112. Parse the resulting argument list using an instance of ``argparse.ArgumentParser `` that you provide
12- 3. Passes the resulting ``argparse.Namespace `` object to your command function
12+ 3. Passes the resulting ``argparse.Namespace `` object to your command function. The ``Namespace `` includes the
13+ ``Statement `` object that was parsed from the command line. It is stored in the ``__statement__ `` attribute of
14+ the ``Namespace ``.
13154. Adds the usage message from the argument parser to your command.
14165. Checks if the ``-h/--help `` option is present, and if so, display the help message for the command
1517
You can’t perform that action at this time.
0 commit comments