]> granicus.if.org Git - python/commitdiff
Added effect of re.ASCII and reworded slightly (#1782)
authorBrian Ward <bri@aem7.net>
Wed, 24 May 2017 07:03:38 +0000 (00:03 -0700)
committerGregory P. Smith <greg@krypto.org>
Wed, 24 May 2017 07:03:38 +0000 (00:03 -0700)
Doc/library/re.rst

index 131f3722c3fa16b91e56fc074693822d7678db09..96338dc27b2e6b6a5f38812b728c25b4886d3d57 100644 (file)
@@ -541,9 +541,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