We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 825c447 commit c8959cfCopy full SHA for c8959cf
1 file changed
Lib/argparse.py
@@ -1,4 +1,5 @@
1
# Author: Steven J. Bethard <steven.bethard@gmail.com>.
2
+# New maintainer as of 29 August 2019: Raymond Hettinger <raymond.hettinger@gmail.com>
3
4
"""Command-line parsing library
5
@@ -2756,7 +2757,7 @@ def _get_formatter(self):
2756
2757
2758
def _get_validation_formatter(self):
2759
# Return cached formatter for read-only validation operations
- # (_expand_help and _format_args). Avoids repeated _set_color calls.
2760
+ # (_expand_help and _format_args). Avoids repeated slow _set_color calls.
2761
if self._cached_formatter is None:
2762
self._cached_formatter = self._get_formatter()
2763
return self._cached_formatter
0 commit comments