From: Georg Brandl Date: Sat, 22 May 2010 08:21:45 +0000 (+0000) Subject: Merged revisions 81463 via svnmerge from X-Git-Tag: v2.6.6rc1~254 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a10d64fba224bbe922ae5297b8c8df1e01ef70c8;p=thirdparty%2FPython%2Fcpython.git Merged revisions 81463 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r81463 | georg.brandl | 2010-05-22 10:17:23 +0200 (Sa, 22 Mai 2010) | 1 line #8785: less confusing description of regex.find*. ........ --- diff --git a/Doc/library/re.rst b/Doc/library/re.rst index c613a41990f8..3da70ab054a1 100644 --- a/Doc/library/re.rst +++ b/Doc/library/re.rst @@ -727,12 +727,16 @@ Regular Expression Objects .. method:: RegexObject.findall(string[, pos[, endpos]]) - Identical to the :func:`findall` function, using the compiled pattern. + Similar to the :func:`findall` function, using the compiled pattern, but + also accepts optional *pos* and *endpos* parameters that limit the search + region like for :meth:`match`. .. method:: RegexObject.finditer(string[, pos[, endpos]]) - Identical to the :func:`finditer` function, using the compiled pattern. + Similar to the :func:`finditer` function, using the compiled pattern, but + also accepts optional *pos* and *endpos* parameters that limit the search + region like for :meth:`match`. .. method:: RegexObject.sub(repl, string[, count=0])