]> granicus.if.org Git - python/commitdiff
Issue #10875: Update Regular Expression HOWTO; additional backport with 2.7 modification.
authorTerry Reedy <tjreedy@udel.edu>
Tue, 11 Jan 2011 00:07:12 +0000 (00:07 +0000)
committerTerry Reedy <tjreedy@udel.edu>
Tue, 11 Jan 2011 00:07:12 +0000 (00:07 +0000)
Doc/howto/regex.rst

index 49cd65e7787abf0141a267dc4fe9b7c3c6cbb4d7..1005c23f41ab780fe58d4a8bd67b55c21ab5609e 100644 (file)
@@ -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]``.