]> granicus.if.org Git - python/commitdiff
Remove \versionchanged; the text was too complex for the GNU info
authorFred Drake <fdrake@acm.org>
Wed, 16 Jul 2003 16:19:08 +0000 (16:19 +0000)
committerFred Drake <fdrake@acm.org>
Wed, 16 Jul 2003 16:19:08 +0000 (16:19 +0000)
conversion to support.  Keep the content as normal content, with a
note that this applies starting in Python 2.3.

Doc/lib/libre.tex

index 5dbf3f0bc1ee105e5cdd38b5626fde2288a7087d..4f1bf882d89c2700134bd81d6cc06119109a5fd7 100644 (file)
@@ -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.