mirror of
https://github.com/python/cpython.git
synced 2025-07-29 06:05:00 +00:00
Issue 2635: fix bug in the fix_sentence_endings option to textwrap.fill.
This commit is contained in:
parent
6513466270
commit
fe536f53ea
3 changed files with 9 additions and 0 deletions
|
@ -90,6 +90,7 @@ class TextWrapper:
|
|||
sentence_end_re = re.compile(r'[%s]' # lowercase letter
|
||||
r'[\.\!\?]' # sentence-ending punct.
|
||||
r'[\"\']?' # optional end-of-quote
|
||||
r'\Z' # end of chunk
|
||||
% string.lowercase)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue