summaryrefslogtreecommitdiffstats
path: root/Doc/library/re.rst
diff options
context:
space:
mode:
authorJeroen Ruigrok van der Werven <asmodai@in-nomine.org>2009-04-27 08:07:12 (GMT)
committerJeroen Ruigrok van der Werven <asmodai@in-nomine.org>2009-04-27 08:07:12 (GMT)
commitb70ccc348bc4ea166f7538dd21b598dd5f545abe (patch)
tree3de8e56332170d2e2ca528d6a299ea24d2cfb64b /Doc/library/re.rst
parent7b6ca4ab7f8ff5dd81fd64ce92b91f6627929ea4 (diff)
downloadcpython-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.rst6
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.