Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 23f4fb9

Browse files
committed
Issue #10875: Update Regular Expression HOWTO; additional backport.
1 parent 8663e34 commit 23f4fb9

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

Doc/howto/regex.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,10 @@ meaning: ``\[`` or ``\\``.
107107
Some of the special sequences beginning with ``'\'`` represent predefined sets
108108
of characters that are often useful, such as the set of digits, the set of
109109
letters, or the set of anything that isn't whitespace. The following predefined
110-
special sequences are available:
110+
special sequences are a subset of those available. The equivalent classes are
111+
for bytes patterns. For a complete list of sequences and expanded class
112+
definitions for Unicode string patterns, see the last part of
113+
:ref:`Regular Expression Syntax <re-syntax>`.
111114

112115
``\d``
113116
Matches any decimal digit; this is equivalent to the class ``[0-9]``.

0 commit comments

Comments
 (0)