From 114277308478d764eb01e1b054dab5d671d5e023 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Sun, 29 Apr 2012 07:34:22 +0300 Subject: [PATCH] #14461: fix wording. --- Doc/library/re.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/re.rst b/Doc/library/re.rst index b82b39797e..56e605772b 100644 --- a/Doc/library/re.rst +++ b/Doc/library/re.rst @@ -273,7 +273,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: -- 2.40.0