summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libregsub.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1998-04-09 14:03:00 (GMT)
committerFred Drake <fdrake@acm.org>1998-04-09 14:03:00 (GMT)
commit54c3947fbcc38d87607ef069ec795cc6682630b3 (patch)
tree81811488747064bd6df0fc88378c4c9806134788 /Doc/lib/libregsub.tex
parent5406e7071f74ece745c5064bbd7d8ba3ecf65856 (diff)
downloadcpython-54c3947fbcc38d87607ef069ec795cc6682630b3.zip
cpython-54c3947fbcc38d87607ef069ec795cc6682630b3.tar.gz
cpython-54c3947fbcc38d87607ef069ec795cc6682630b3.tar.bz2
Updated URL to AMK's regex-to-re HOWTO.
Diffstat (limited to 'Doc/lib/libregsub.tex')
-rw-r--r--Doc/lib/libregsub.tex7
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/lib/libregsub.tex b/Doc/lib/libregsub.tex
index 93c955e..c390a49 100644
--- a/Doc/lib/libregsub.tex
+++ b/Doc/lib/libregsub.tex
@@ -1,7 +1,7 @@
\section{Standard Module \module{regsub}}
\label{module-regsub}
-
\stmodindex{regsub}
+
This module defines a number of functions useful for working with
regular expressions (see built-in module \code{regex}).
@@ -15,8 +15,9 @@ supports the more powerful and regular Perl-style regular expressions.
Existing code should be converted. The standard library module
\module{reconvert} helps in converting \code{regex} style regular
expressions to \module{re} style regular expressions. (For more
-conversion help, see the URL
-\url{http://starship.skyport.net/crew/amk/howto/regex-to-re.html}.)
+conversion help, see Andrew Kuchling's\index{Kuchling, Andrew}
+``regex-to-re HOWTO'' at
+\url{http://www.python.org/doc/howto/regex-to-re/}.)
\begin{funcdesc}{sub}{pat, repl, str}