summaryrefslogtreecommitdiff
path: root/cmd2
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2020-04-23 18:01:23 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2020-04-23 18:01:23 -0400
commit502fdff29b755bec83808352db8777e6e1057757 (patch)
tree33169eca113b07a891ef4fcdb70a4bb409b5b4a4 /cmd2
parente21e2ef271bed4681ec09ee2643f4b9a4e54ca8e (diff)
downloadcmd2-git-502fdff29b755bec83808352db8777e6e1057757.tar.gz
Completion doc updates
Diffstat (limited to 'cmd2')
-rw-r--r--cmd2/argparse_custom.py21
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