summaryrefslogtreecommitdiff
path: root/cmd2/argparse_custom.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Added documentationKevin Van Brunt2019-07-111-0/+99
|
* Moved all custom argparse classes intended for normal development to ↵Kevin Van Brunt2019-07-071-2/+54
| | | | | | | argparse_custom.py. Lazy loading AutoCompleter in cmd2 instance methods to allow argparse_completer.py to import cmd2.Cmd class. This Architecture makes more sense because AutoCompleter depends on cmd2.Cmd.
* Hiding flags that have help value of SUPRESSED in tab completion resultsKevin Van Brunt2019-07-071-4/+4
| | | | Added more unit tests for argparse completer
* Using argparse constants instead of hardcoded stringsKevin Van Brunt2019-07-041-3/+3
|
* Patched 2 more argparse functions to make nargs ranges work with all parsersKevin Van Brunt2019-07-041-43/+73
|
* Refactoring and updating documentationKevin Van Brunt2019-07-041-27/+31
|
* No longer restricting nargs range support to Cmd2ArgParserKevin Van Brunt2019-07-041-108/+165
|
* Removed unused custom_error_message codeKevin Van Brunt2019-07-031-15/+0
|
* Renamed ACHelpFormatter to Cmd2HelpFormatterKevin Van Brunt2019-07-031-2/+2
|
* Moved cmd2 custom argparse types to argparse_custom.pyKevin Van Brunt2019-07-031-0/+424
Rename ACArgumentParser to Cmd2ArgParser