]> granicus.if.org Git - python/commitdiff
[2.7] bpo-32211: Document the existing bug in re.findall() and re.finditer(). (GH...
authorSerhiy Storchaka <storchaka@gmail.com>
Thu, 4 Jan 2018 12:08:27 +0000 (14:08 +0200)
committerGitHub <noreply@github.com>
Thu, 4 Jan 2018 12:08:27 +0000 (14:08 +0200)
(cherry picked from commit 1e6d8525f9dd3dcdc83adb93b164082c8b95d17a)

Doc/library/re.rst

index 22340818e26d422873f92234f1371828e4d960a5..c424230e13a4191e5d03a3efe8f6fca08215bade 100644 (file)
@@ -611,14 +611,21 @@ form.
       Added the optional flags argument.
 
 
+
 .. function:: findall(pattern, string, flags=0)
 
    Return all non-overlapping matches of *pattern* in *string*, as a list of
    strings.  The *string* is scanned left-to-right, and matches are returned in
    the order found.  If one or more groups are present in the pattern, return a
    list of groups; this will be a list of tuples if the pattern has more than
-   one group.  Empty matches are included in the result unless they touch the
-   beginning of another match.
+   one group.  Empty matches are included in the result.
+
+   .. note::
+
+      Due to the limitation of the current implementation the character
+      following an empty match is not included in a next match, so
+      ``findall(r'^|\w+', 'two words')`` returns ``['', 'wo', 'words']``
+      (note missed "t").  This is changed in Python 3.7.
 
    .. versionadded:: 1.5.2
 
@@ -631,8 +638,7 @@ form.
    Return an :term:`iterator` yielding :class:`MatchObject` instances over all
    non-overlapping matches for the RE *pattern* in *string*.  The *string* is
    scanned left-to-right, and matches are returned in the order found.  Empty
-   matches are included in the result unless they touch the beginning of another
-   match.
+   matches are included in the result.  See also the note about :func:`findall`.
 
    .. versionadded:: 2.2