Issue #29290: Merge 3.5.

This commit is contained in:
Xiang Zhang 2017-01-22 14:39:20 +08:00
commit b1681189af
3 changed files with 21 additions and 1 deletions

View file

@ -182,7 +182,7 @@ class HelpFormatter(object):
self._root_section = self._Section(self, None)
self._current_section = self._root_section
self._whitespace_matcher = _re.compile(r'\s+')
self._whitespace_matcher = _re.compile(r'\s+', _re.ASCII)
self._long_break_matcher = _re.compile(r'\n\n\n+')
# ===============================