diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-04-29 04:35:22 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-04-29 04:35:22 (GMT) |
commit | 0ce1649674cdd9bc3351f9b98edc1ae3ce3162fa (patch) | |
tree | 8c85735d25c3b74e8ef2fd3201a31f74ac906378 /Doc/library/re.rst | |
parent | 4b7698c468642f7013a8fd21f46eb41aba8dde42 (diff) | |
parent | 0a6b5419b02862bf6270bbd27f472eb2f02b8ae9 (diff) | |
download | cpython-0ce1649674cdd9bc3351f9b98edc1ae3ce3162fa.zip cpython-0ce1649674cdd9bc3351f9b98edc1ae3ce3162fa.tar.gz cpython-0ce1649674cdd9bc3351f9b98edc1ae3ce3162fa.tar.bz2 |
#14461: merge with 3.2.
Diffstat (limited to 'Doc/library/re.rst')
-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 72bc46a..7f79e58 100644 --- a/Doc/library/re.rst +++ b/Doc/library/re.rst @@ -278,7 +278,7 @@ The special characters are: lookbehind will back up 3 characters and check if the contained pattern matches. The contained pattern must only match strings of some fixed length, meaning that ``abc`` or ``a|b`` are allowed, but ``a*`` and ``a{3,4}`` are not. Note that - patterns which start with positive lookbehind assertions will never match at the + patterns which start with positive lookbehind assertions will not match at the beginning of the string being searched; you will most likely want to use the :func:`search` function rather than the :func:`match` function: |