Skip to content

bpo-24896 [3.6] Added effect of re.ASCII and reworded slightly (GH-1782) #3313

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 4, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions Doc/library/re.rst
Original file line number Diff line number Diff line change
Expand Up @@ -542,9 +542,11 @@ form.
.. data:: I
IGNORECASE

Perform case-insensitive matching; expressions like ``[A-Z]`` will match
lowercase letters, too. This is not affected by the current locale
and works for Unicode characters as expected.
Perform case-insensitive matching; expressions like ``[A-Z]`` will also
match lowercase letters. The current locale does not change the effect of
this flag. Full Unicode matching (such as ``Ü`` matching ``ü``) also
works unless the :const:`re.ASCII` flag is also used to disable non-ASCII
matches.


.. data:: L
Expand Down