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.
This commit is contained in:
Jeroen Ruigrok van der Werven 2009-04-27 08:07:12 +00:00
parent 7b6ca4ab7f
commit b70ccc348b
19 changed files with 3 additions and 360 deletions

View file

@ -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.