summaryrefslogtreecommitdiffstats
path: root/Doc/library/re.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-09-01 13:51:09 (GMT)
committerGeorg Brandl <georg@python.org>2007-09-01 13:51:09 (GMT)
commit55ac8f0f26efdbbcb5cc197f9369d23d50bee908 (patch)
treea0d5b7128c055d8c767652dc3948c3404be06396 /Doc/library/re.rst
parent1617457cff847fed9fadb01f1acf6ba8bb621726 (diff)
downloadcpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.zip
cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.gz
cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.bz2
Get rid of the remaining versionadded/versionchanged directives.
Diffstat (limited to 'Doc/library/re.rst')
-rw-r--r--Doc/library/re.rst13
1 files changed, 0 insertions, 13 deletions
diff --git a/Doc/library/re.rst b/Doc/library/re.rst
index b0b8513..fef6d2d 100644
--- a/Doc/library/re.rst
+++ b/Doc/library/re.rst
@@ -287,7 +287,6 @@ The special characters are:
matching pattern, which will match with ``'<user@host.com>'`` as well as
``'user@host.com'``, but not with ``'<user@host.com'``.
- .. versionadded:: 2.4
The special sequences consist of ``'\'`` and a character from the list below.
If the ordinary character is not on the list, then the resulting RE will match
@@ -492,8 +491,6 @@ form.
Make ``\w``, ``\W``, ``\b``, ``\B``, ``\d``, ``\D``, ``\s`` and ``\S`` dependent
on the Unicode character properties database.
- .. versionadded:: 2.0
-
.. data:: X
VERBOSE
@@ -557,11 +554,6 @@ form.
a list of tuples if the pattern has more than one group. Empty matches are
included in the result unless they touch the beginning of another match.
- .. versionadded:: 1.5.2
-
- .. versionchanged:: 2.4
- Added the optional flags argument.
-
.. function:: finditer(pattern, string[, flags])
@@ -569,11 +561,6 @@ form.
*string*. For each match, the iterator returns a match object. Empty matches
are included in the result unless they touch the beginning of another match.
- .. versionadded:: 2.2
-
- .. versionchanged:: 2.4
- Added the optional flags argument.
-
.. function:: sub(pattern, repl, string[, count])