diff options
author | Grant Jenks <grant.jenks@gmail.com> | 2018-08-22 20:14:14 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2018-08-22 20:14:14 (GMT) |
commit | 65bef36f0bc5d8c3f6a47568012df4ae5ba2ac8b (patch) | |
tree | 24ae760dc7bea058d9280f1b96733c45e2f91e93 /Lib/argparse.py | |
parent | c583919ffced0a3b6409766fc12f6e28bef4fac7 (diff) | |
download | cpython-65bef36f0bc5d8c3f6a47568012df4ae5ba2ac8b.zip cpython-65bef36f0bc5d8c3f6a47568012df4ae5ba2ac8b.tar.gz cpython-65bef36f0bc5d8c3f6a47568012df4ae5ba2ac8b.tar.bz2 |
Remove superseded line from argparse.HelpFormatter() (GH-8839)
Diffstat (limited to 'Lib/argparse.py')
-rw-r--r-- | Lib/argparse.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/argparse.py b/Lib/argparse.py index 83f47e3..798766f 100644 --- a/Lib/argparse.py +++ b/Lib/argparse.py @@ -170,7 +170,6 @@ class HelpFormatter(object): self._prog = prog self._indent_increment = indent_increment - self._max_help_position = max_help_position self._max_help_position = min(max_help_position, max(width - 20, indent_increment * 2)) self._width = width |