summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2003-07-16 16:19:08 (GMT)
committerFred Drake <fdrake@acm.org>2003-07-16 16:19:08 (GMT)
commit788617f8f024ac1d8e411b5c19066da0a1e68235 (patch)
tree5923b18f61bb5c1111360f699429c0fef80608a7
parentf75d9fce1689f3e7768fd425858469dc91cbff58 (diff)
downloadcpython-788617f8f024ac1d8e411b5c19066da0a1e68235.zip
cpython-788617f8f024ac1d8e411b5c19066da0a1e68235.tar.gz
cpython-788617f8f024ac1d8e411b5c19066da0a1e68235.tar.bz2
Remove \versionchanged; the text was too complex for the GNU info
conversion to support. Keep the content as normal content, with a note that this applies starting in Python 2.3.
-rw-r--r--Doc/lib/libre.tex8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/lib/libre.tex b/Doc/lib/libre.tex
index 5dbf3f0..4f1bf88 100644
--- a/Doc/lib/libre.tex
+++ b/Doc/lib/libre.tex
@@ -916,8 +916,8 @@ RuntimeError: maximum recursion limit exceeded
You can often restructure your regular expression to avoid recursion.
-\versionchanged[Simple uses of the \regexp{*?} pattern are now
+Starting with Python 2.3, simple uses of the \regexp{*?} pattern are
special-cased to avoid recursion. Thus, the above regular expression
-can avoid recursion by being recast as \regexp{Begin [a-zA-Z0-9_ ]*?end}.
-As a further benefit, such regular expressions will run faster than
-their recursive equivalents.]{2.3}
+can avoid recursion by being recast as
+\regexp{Begin [a-zA-Z0-9_ ]*?end}. As a further benefit, such regular
+expressions will run faster than their recursive equivalents.