mirror of
https://github.com/python/cpython.git
synced 2025-08-02 16:13:13 +00:00
#6235: ASCII also affects \[dD] escapes.
This commit is contained in:
parent
ed2a1db59d
commit
4049ce080c
1 changed files with 3 additions and 3 deletions
|
@ -479,9 +479,9 @@ form.
|
||||||
.. data:: A
|
.. data:: A
|
||||||
ASCII
|
ASCII
|
||||||
|
|
||||||
Make ``\w``, ``\W``, ``\b``, ``\B``, ``\s`` and ``\S`` perform ASCII-only
|
Make ``\w``, ``\W``, ``\b``, ``\B``, ``\d``, ``\D``, ``\s`` and ``\S``
|
||||||
matching instead of full Unicode matching. This is only meaningful for
|
perform ASCII-only matching instead of full Unicode matching. This is only
|
||||||
Unicode patterns, and is ignored for byte patterns.
|
meaningful for Unicode patterns, and is ignored for byte patterns.
|
||||||
|
|
||||||
Note that for backward compatibility, the :const:`re.U` flag still
|
Note that for backward compatibility, the :const:`re.U` flag still
|
||||||
exists (as well as its synonym :const:`re.UNICODE` and its embedded
|
exists (as well as its synonym :const:`re.UNICODE` and its embedded
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue