diff options
author | Terry Reedy <tjreedy@udel.edu> | 2011-01-11 00:07:12 (GMT) |
---|---|---|
committer | Terry Reedy <tjreedy@udel.edu> | 2011-01-11 00:07:12 (GMT) |
commit | 1d065958af4739f6011e3fb44b66593044b1293d (patch) | |
tree | cb1510031efaeba712a8bd59ec8efa47da72b921 /Doc/howto | |
parent | f7dd7998def4a1efdcee8134c1f51d2e08c0c7f1 (diff) | |
download | cpython-1d065958af4739f6011e3fb44b66593044b1293d.zip cpython-1d065958af4739f6011e3fb44b66593044b1293d.tar.gz cpython-1d065958af4739f6011e3fb44b66593044b1293d.tar.bz2 |
Issue #10875: Update Regular Expression HOWTO; additional backport with 2.7 modification.
Diffstat (limited to 'Doc/howto')
-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 49cd65e..1005c23 100644 --- a/Doc/howto/regex.rst +++ b/Doc/howto/regex.rst @@ -112,7 +112,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 byte string 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]``. |