diff options
author | Georg Brandl <georg@python.org> | 2013-10-06 10:58:26 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-06 10:58:26 (GMT) |
commit | f70acb7874e6d17b266c1e85a45e40e45b607c00 (patch) | |
tree | 5361acc1b811ee3947f78b0f128f76e503f61d67 | |
parent | 93c85a9d1b3e6862e8133f13baf512106ba254cf (diff) | |
parent | 2070e83f28008e0110f3caf021e129ecb3b33558 (diff) | |
download | cpython-f70acb7874e6d17b266c1e85a45e40e45b607c00.zip cpython-f70acb7874e6d17b266c1e85a45e40e45b607c00.tar.gz cpython-f70acb7874e6d17b266c1e85a45e40e45b607c00.tar.bz2 |
merge with 3.3
-rw-r--r-- | Doc/library/re.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/re.rst b/Doc/library/re.rst index 1421f35..762ca49 100644 --- a/Doc/library/re.rst +++ b/Doc/library/re.rst @@ -327,7 +327,7 @@ the second character. For example, ``\$`` matches the character ``'$'``. ``\number`` Matches the contents of the group of the same number. Groups are numbered starting from 1. For example, ``(.+) \1`` matches ``'the the'`` or ``'55 55'``, - but not ``'the end'`` (note the space after the group). This special sequence + but not ``'thethe'`` (note the space after the group). This special sequence can only be used to match one of the first 99 groups. If the first digit of *number* is 0, or *number* is 3 octal digits long, it will not be interpreted as a group match, but as the character with octal value *number*. Inside the |