From: Grant Jenks Date: Wed, 22 Aug 2018 20:14:14 +0000 (-0700) Subject: Remove superseded line from argparse.HelpFormatter() (GH-8839) X-Git-Tag: v3.8.0a1~1181 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=65bef36f0bc5d8c3f6a47568012df4ae5ba2ac8b;p=thirdparty%2FPython%2Fcpython.git Remove superseded line from argparse.HelpFormatter() (GH-8839) --- diff --git a/Lib/argparse.py b/Lib/argparse.py index 83f47e35a73c..798766f6c408 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