diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2003-05-03 10:59:13 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2003-05-03 10:59:13 (GMT) |
commit | ec31047c0ca0f8a78b0b9071f4200e3708d26b43 (patch) | |
tree | 309c8a47e77196779bda6a8f0b4b31b95d7c7b54 /Doc | |
parent | 7829e5661c37fd4986b8fc5ca29f5e95ec5783bc (diff) | |
download | cpython-ec31047c0ca0f8a78b0b9071f4200e3708d26b43.zip cpython-ec31047c0ca0f8a78b0b9071f4200e3708d26b43.tar.gz cpython-ec31047c0ca0f8a78b0b9071f4200e3708d26b43.tar.bz2 |
Use \versionchanged, not \versionadded.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libre.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libre.tex b/Doc/lib/libre.tex index cf05441..0f9619f 100644 --- a/Doc/lib/libre.tex +++ b/Doc/lib/libre.tex @@ -915,7 +915,7 @@ RuntimeError: maximum recursion limit exceeded You can often restructure your regular expression to avoid recursion. -\versionadded[Simple uses of the \regexp{*?} pattern are now +\versionchanged[Simple uses of the \regexp{*?} pattern are now 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 |