diff options
author | Jeroen Ruigrok van der Werven <asmodai@in-nomine.org> | 2009-04-27 08:07:12 (GMT) |
---|---|---|
committer | Jeroen Ruigrok van der Werven <asmodai@in-nomine.org> | 2009-04-27 08:07:12 (GMT) |
commit | b70ccc348bc4ea166f7538dd21b598dd5f545abe (patch) | |
tree | 3de8e56332170d2e2ca528d6a299ea24d2cfb64b /Doc/library/re.rst | |
parent | 7b6ca4ab7f8ff5dd81fd64ce92b91f6627929ea4 (diff) | |
download | cpython-b70ccc348bc4ea166f7538dd21b598dd5f545abe.zip cpython-b70ccc348bc4ea166f7538dd21b598dd5f545abe.tar.gz cpython-b70ccc348bc4ea166f7538dd21b598dd5f545abe.tar.bz2 |
After discussing some more with Georg, do no migrate versionchanged:: 2.5 to
this branch. While I am here, also get rid of other versionchanged:: 2.x
constructs, as discussed.
Diffstat (limited to 'Doc/library/re.rst')
-rw-r--r-- | Doc/library/re.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/re.rst b/Doc/library/re.rst index fade6ec..1259b11 100644 --- a/Doc/library/re.rst +++ b/Doc/library/re.rst @@ -605,7 +605,7 @@ form. >>> re.split("(?m)^$", "foo\n\nbar\n") ['foo\n\nbar\n'] - .. versionchanged:: 2.7,3.1 + .. versionchanged:: 3.1 Added the optional flags argument. @@ -675,7 +675,7 @@ form. character ``'0'``. The backreference ``\g<0>`` substitutes in the entire substring matched by the RE. - .. versionchanged:: 2.7,3.1 + .. versionchanged:: 3.1 Added the optional flags argument. @@ -684,7 +684,7 @@ form. Perform the same operation as :func:`sub`, but return a tuple ``(new_string, number_of_subs_made)``. - .. versionchanged:: 2.7,3.1 + .. versionchanged:: 3.1 Added the optional flags argument. |