diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-04-17 08:39:58 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-04-17 08:39:58 (GMT) |
commit | 53855c6495b076143c7bf947817fc967e3068af2 (patch) | |
tree | 927ab5d5a3ec82ae11501b35c421ea91959d8eb6 /Doc/howto | |
parent | e6c6e3d9c5d0bae998a71ad465c974d1b25084d9 (diff) | |
download | cpython-53855c6495b076143c7bf947817fc967e3068af2.zip cpython-53855c6495b076143c7bf947817fc967e3068af2.tar.gz cpython-53855c6495b076143c7bf947817fc967e3068af2.tar.bz2 |
Remove the xmllib module that was obsolete.
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/regex.tex | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/howto/regex.tex b/Doc/howto/regex.tex index 62b6daf..d911be6 100644 --- a/Doc/howto/regex.tex +++ b/Doc/howto/regex.tex @@ -522,8 +522,7 @@ then the module functions are probably more convenient. If a program contains a lot of regular expressions, or re-uses the same ones in several locations, then it might be worthwhile to collect all the definitions in one place, in a section of code that compiles all the -REs ahead of time. To take an example from the standard library, -here's an extract from \file{xmllib.py}: +REs ahead of time. To take an example from the standard library: \begin{verbatim} ref = re.compile( ... ) |