[Python-checkins] cpython (merge 3.2 -> default): #14461: merge with 3.2.

ezio.melotti python-checkins at python.org
Sun Apr 29 06:35:42 CEST 2012


http://hg.python.org/cpython/rev/d68b4885fc0f
changeset:   76613:d68b4885fc0f
parent:      76609:261de1701343
parent:      76612:7f35da912739
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Sun Apr 29 07:35:22 2012 +0300
summary:
  #14461: merge with 3.2.

files:
  Doc/library/re.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/re.rst b/Doc/library/re.rst
--- a/Doc/library/re.rst
+++ b/Doc/library/re.rst
@@ -278,7 +278,7 @@
    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:
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list