diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-04-23 18:19:08 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-23 18:19:08 -0400 |
commit | 9c7bbfa5bdbf8c8d81c0cd3c3cd5179d700de0b2 (patch) | |
tree | 33169eca113b07a891ef4fcdb70a4bb409b5b4a4 /cmd2/argparse_custom.py | |
parent | ecf154f1b13e41644fefd3db624aae1d8c1e0d2a (diff) | |
parent | 502fdff29b755bec83808352db8777e6e1057757 (diff) | |
download | cmd2-git-9c7bbfa5bdbf8c8d81c0cd3c3cd5179d700de0b2.tar.gz |
Merge pull request #929 from python-cmd2/completion_docs
Completion docs
Diffstat (limited to 'cmd2/argparse_custom.py')
-rw-r--r-- | cmd2/argparse_custom.py | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/cmd2/argparse_custom.py b/cmd2/argparse_custom.py index 5c3d6223..f018f33f 100644 --- a/cmd2/argparse_custom.py +++ b/cmd2/argparse_custom.py @@ -188,18 +188,15 @@ and will not include the description value of the CompletionItems. **Patched argparse functions** -argparse._ActionsContainer.add_argument - adds arguments related to tab - completion and enables nargs range - parsing See _add_argument_wrapper for - more details on these argument - -argparse.ArgumentParser._get_nargs_pattern - adds support to for nargs ranges - See _get_nargs_pattern_wrapper for - more details - -argparse.ArgumentParser._match_argument - adds support to for nargs ranges See - _match_argument_wrapper for more - details +``argparse._ActionsContainer.add_argument`` - adds arguments related to tab +completion and enables nargs range parsing. See _add_argument_wrapper for +more details on these arguments. + +``argparse.ArgumentParser._get_nargs_pattern`` - adds support to for nargs +ranges. See _get_nargs_pattern_wrapper for more details. + +``argparse.ArgumentParser._match_argument`` - adds support to for nargs ranges. +See _match_argument_wrapper for more details. """ import argparse |