summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2002-04-10 21:28:31 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2002-04-10 21:28:31 (GMT)
commit2854c478be6d179d1f6a80a99ae7994ac351ac0d (patch)
tree4476afbdf0d0a7dc7b2d3880c25eb4bd02d8c509
parent7fd1c8c880ebb9df09002bd8c165aeb95a947bdf (diff)
downloadcpython-2854c478be6d179d1f6a80a99ae7994ac351ac0d.zip
cpython-2854c478be6d179d1f6a80a99ae7994ac351ac0d.tar.gz
cpython-2854c478be6d179d1f6a80a99ae7994ac351ac0d.tar.bz2
Remove mention of 'pre' module
(2.2 bugfix candidate?)
-rw-r--r--Doc/lib/libre.tex9
1 files changed, 0 insertions, 9 deletions
diff --git a/Doc/lib/libre.tex b/Doc/lib/libre.tex
index ac2fc74..61dd028 100644
--- a/Doc/lib/libre.tex
+++ b/Doc/lib/libre.tex
@@ -33,15 +33,6 @@ while \code{"\e n"} is a one-character string containing a newline.
Usually patterns will be expressed in Python code using this raw
string notation.
-\strong{Implementation note:}
-The \module{re}\refstmodindex{pre} module has two distinct
-implementations: \module{sre} is the default implementation and
-includes Unicode support, but may run into stack limitations for some
-patterns. Though this will be fixed for a future release of Python,
-the older implementation (without Unicode support) is still available
-as the \module{pre}\refstmodindex{pre} module.
-
-
\begin{seealso}
\seetitle{Mastering Regular Expressions}{Book on regular expressions
by Jeffrey Friedl, published by O'Reilly. The Python