We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7ec998 commit c9d6dbcCopy full SHA for c9d6dbc
Doc/library/re.rst
@@ -541,9 +541,11 @@ form.
541
.. data:: I
542
IGNORECASE
543
544
- Perform case-insensitive matching; expressions like ``[A-Z]`` will match
545
- lowercase letters, too. This is not affected by the current locale
546
- 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
547
+ works unless the :const:`re.ASCII` flag is also used to disable non-ASCII
548
+ matches.
549
550
551
.. data:: L
0 commit comments