summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-11-26 09:30:44 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2010-11-26 09:30:44 (GMT)
commit1e5d31813a05b17de248890e0560e8d8fc844e2b (patch)
tree5288b0da5084741d210f02c649a78e1f375e6489 /Doc
parent241efded1d1d66e326b134a871a10e076914b3a2 (diff)
downloadcpython-1e5d31813a05b17de248890e0560e8d8fc844e2b.zip
cpython-1e5d31813a05b17de248890e0560e8d8fc844e2b.tar.gz
cpython-1e5d31813a05b17de248890e0560e8d8fc844e2b.tar.bz2
Remove 3.1 from versionchanged
Diffstat (limited to 'Doc')
-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 5bdc5a1..f789601 100644
--- a/Doc/library/re.rst
+++ b/Doc/library/re.rst
@@ -574,7 +574,7 @@ form.
>>> re.split("(?m)^$", "foo\n\nbar\n")
['foo\n\nbar\n']
- .. versionchanged:: 2.7,3.1
+ .. versionchanged:: 2.7
Added the optional flags argument.
@@ -652,7 +652,7 @@ form.
character ``'0'``. The backreference ``\g<0>`` substitutes in the entire
substring matched by the RE.
- .. versionchanged:: 2.7,3.1
+ .. versionchanged:: 2.7
Added the optional flags argument.
@@ -661,7 +661,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:: 2.7
Added the optional flags argument.