From: Terry Reedy Date: Mon, 10 Jan 2011 23:13:21 +0000 (+0000) Subject: Issue #10875: Update Regular Expression HOWTO; last bit. X-Git-Tag: v3.2rc1~76 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=262cc7f6b667ac4723b0199654d26234788739c5;p=thirdparty%2FPython%2Fcpython.git Issue #10875: Update Regular Expression HOWTO; last bit. --- diff --git a/Doc/howto/regex.rst b/Doc/howto/regex.rst index 711a0d581052..8f39eeb52640 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 `. ``\d`` Matches any decimal digit; this is equivalent to the class ``[0-9]``.