diff options
author | Terry Reedy <tjreedy@udel.edu> | 2011-01-10 23:13:21 (GMT) |
---|---|---|
committer | Terry Reedy <tjreedy@udel.edu> | 2011-01-10 23:13:21 (GMT) |
commit | 262cc7f6b667ac4723b0199654d26234788739c5 (patch) | |
tree | 802472d8b2bfe43ad19c472f19d4ab70acd9253a | |
parent | 95f1dfc955310c86398fbb430274ec36aa0daad4 (diff) | |
download | cpython-262cc7f6b667ac4723b0199654d26234788739c5.zip cpython-262cc7f6b667ac4723b0199654d26234788739c5.tar.gz cpython-262cc7f6b667ac4723b0199654d26234788739c5.tar.bz2 |
Issue #10875: Update Regular Expression HOWTO; last bit.
-rw-r--r-- | Doc/howto/regex.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Doc/howto/regex.rst b/Doc/howto/regex.rst index 711a0d5..8f39eeb 100644 --- a/Doc/howto/regex.rst +++ b/Doc/howto/regex.rst @@ -107,7 +107,10 @@ meaning: ``\[`` or ``\\``. Some of the special sequences beginning with ``'\'`` represent predefined sets of characters that are often useful, such as the set of digits, the set of letters, or the set of anything that isn't whitespace. The following predefined -special sequences are available: +special sequences are a subset of those available. The equivalent classes are +for bytes patterns. For a complete list of sequences and expanded class +definitions for Unicode string patterns, see the last part of +:ref:`Regular Expression Syntax <re-syntax>`. ``\d`` Matches any decimal digit; this is equivalent to the class ``[0-9]``. |