]> granicus.if.org Git - python/commitdiff
Remove 3.1 from versionchanged
authorEzio Melotti <ezio.melotti@gmail.com>
Fri, 26 Nov 2010 09:30:44 +0000 (09:30 +0000)
committerEzio Melotti <ezio.melotti@gmail.com>
Fri, 26 Nov 2010 09:30:44 +0000 (09:30 +0000)
Doc/library/re.rst

index 5bdc5a1cc64947add3bfeb1903d903ccd1ff4d12..f789601c66c2388de9883b9f62e4a2ea6ae5808b 100644 (file)
@@ -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.