]> granicus.if.org Git - python/commitdiff
#6235: ASCII also affects \[dD] escapes.
authorGeorg Brandl <georg@python.org>
Mon, 8 Jun 2009 07:49:54 +0000 (07:49 +0000)
committerGeorg Brandl <georg@python.org>
Mon, 8 Jun 2009 07:49:54 +0000 (07:49 +0000)
Doc/library/re.rst

index ee21186ac94401fdbf1d67e73d8c1e0ca6e4c1ad..5c703723431a7fd62afcc1ba9a01f27903779ade 100644 (file)
@@ -479,9 +479,9 @@ form.
 .. data:: A
           ASCII
 
-   Make ``\w``, ``\W``, ``\b``, ``\B``, ``\s`` and ``\S`` perform ASCII-only
-   matching instead of full Unicode matching. This is only meaningful for
-   Unicode patterns, and is ignored for byte patterns.
+   Make ``\w``, ``\W``, ``\b``, ``\B``, ``\d``, ``\D``, ``\s`` and ``\S``
+   perform ASCII-only matching instead of full Unicode matching.  This is only
+   meaningful for Unicode patterns, and is ignored for byte patterns.
 
    Note that for backward compatibility, the :const:`re.U` flag still
    exists (as well as its synonym :const:`re.UNICODE` and its embedded