From: Georg Brandl Date: Sun, 6 Oct 2013 10:58:20 +0000 (+0200) Subject: Fix example in backreference description. Found by Alexander Heger on docs@. X-Git-Tag: v3.4.0a4~242^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2070e83f28008e0110f3caf021e129ecb3b33558;p=thirdparty%2FPython%2Fcpython.git Fix example in backreference description. Found by Alexander Heger on docs@. --- diff --git a/Doc/library/re.rst b/Doc/library/re.rst index 1421f35ffaef..762ca496bc33 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