Fix help typo

This commit is contained in:
Paul Kulchenko 2022-04-19 21:27:39 -07:00
parent 5a132f9652
commit 63385e901c

View file

@ -1186,7 +1186,7 @@ RE MODULE
re.NEWLINE re.NEWLINE
Use this flag to change the handling of NEWLINE (\x0a) characters. Use this flag to change the handling of NEWLINE (\x0a) characters.
When this flag is set, (1) a NEWLINE shall not be matched by a "." When this flag is set, (1) a NEWLINE shall not be matched by a "."
or any form of a non-matching list, () a "^" shall match the or any form of a non-matching list, (2) a "^" shall match the
zero-length string immediately after a NEWLINE (regardless of zero-length string immediately after a NEWLINE (regardless of
re.NOTBOL), and (3) a "$" shall match the zero-length string re.NOTBOL), and (3) a "$" shall match the zero-length string
immediately before a NEWLINE (regardless of re.NOTEOL). immediately before a NEWLINE (regardless of re.NOTEOL).