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 1dba378 commit d50ce4fCopy full SHA for d50ce4f
Doc/library/re.rst
@@ -542,9 +542,11 @@ form.
542
.. data:: I
543
IGNORECASE
544
545
- Perform case-insensitive matching; expressions like ``[A-Z]`` will match
546
- lowercase letters, too. This is not affected by the current locale
547
- 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
548
+ works unless the :const:`re.ASCII` flag is also used to disable non-ASCII
549
+ matches.
550
551
552
.. data:: L
0 commit comments