commit | 41b223d29cdfeb1f222c12c3abaccc3bc128f5e7 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | Wed Dec 23 09:40:56 2020 -0800 |
committer | GitHub <noreply@github.com> | Wed Dec 23 09:40:56 2020 -0800 |
tree | 817e48eaad3896b63163931a8fdbf3a03005dad1 | |
parent | bfda4f5776fd20f92b441c8a88ee7a9d44dc8777 [diff] [blame] |
bpo-9694: Fix misleading phrase "optional arguments" (GH-23858)
diff --git a/Lib/argparse.py b/Lib/argparse.py index 2fb1da5..8a12dea 100644 --- a/Lib/argparse.py +++ b/Lib/argparse.py
@@ -1719,7 +1719,7 @@ def __init__(self, add_group = self.add_argument_group self._positionals = add_group(_('positional arguments')) - self._optionals = add_group(_('optional arguments')) + self._optionals = add_group(_('options')) self._subparsers = None # register types