summaryrefslogtreecommitdiffstats
path: root/Doc/library/re.rst
diff options
context:
space:
mode:
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])