[Python-checkins] r86790 - python/branches/release27-maint/Doc/library/re.rst

ezio.melotti python-checkins at python.org
Fri Nov 26 10:30:45 CET 2010


Author: ezio.melotti
Date: Fri Nov 26 10:30:44 2010
New Revision: 86790

Log:
Remove 3.1 from versionchanged

Modified:
   python/branches/release27-maint/Doc/library/re.rst

Modified: python/branches/release27-maint/Doc/library/re.rst
==============================================================================
--- python/branches/release27-maint/Doc/library/re.rst	(original)
+++ python/branches/release27-maint/Doc/library/re.rst	Fri Nov 26 10:30:44 2010
@@ -574,7 +574,7 @@
       >>> 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 @@
    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 @@
    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.
 
 


More information about the Python-checkins mailing list