diff options
author | Fred Drake <fdrake@acm.org> | 1998-09-18 17:11:49 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-09-18 17:11:49 (GMT) |
commit | 10a7985565f9ee287ee1d34786536fae4829d65a (patch) | |
tree | 44570edb3420b78625882fe371ae92d502d3f13c /Doc | |
parent | 78694d970fbdc70cfbda5b21a556f6e11f684fb0 (diff) | |
download | cpython-10a7985565f9ee287ee1d34786536fae4829d65a.zip cpython-10a7985565f9ee287ee1d34786536fae4829d65a.tar.gz cpython-10a7985565f9ee287ee1d34786536fae4829d65a.tar.bz2 |
re.findall(): Mark as added in 1.5.2.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libre.tex | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/lib/libre.tex b/Doc/lib/libre.tex index 45844e4..c65898c 100644 --- a/Doc/lib/libre.tex +++ b/Doc/lib/libre.tex @@ -411,6 +411,7 @@ leftmost such \character{\#} through the end of the line are ignored. \end{funcdesc} \begin{funcdesc}{findall}{pattern, string} +\versionadded{1.5.2} Return a list of all non-overlapping matches of \var{pattern} in \var{string}. 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 |