summaryrefslogtreecommitdiff
path: root/Doc/howto/regex.rst
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2012-03-05 15:50:37 +0100
committerÉric Araujo <merwok@netwok.org>2012-03-05 15:50:37 +0100
commit12e96cd808edc648a04cb25202d2ba19388f5bb9 (patch)
tree53991ac8ae89fa3c4e700bda4d66a8581f1a55e1 /Doc/howto/regex.rst
parent8d13370276e0dfe2db37ab24f8e54281d9c1b370 (diff)
downloadcpython-12e96cd808edc648a04cb25202d2ba19388f5bb9.tar.gz
Use source reST role instead of file where it makes sense.
source generates a nifty link to the Mercurial web viewer.
Diffstat (limited to 'Doc/howto/regex.rst')
-rw-r--r--Doc/howto/regex.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/howto/regex.rst b/Doc/howto/regex.rst
index 07a8b561d0..3ac03ca86a 100644
--- a/Doc/howto/regex.rst
+++ b/Doc/howto/regex.rst
@@ -360,7 +360,7 @@ and more.
You can learn about this by interactively experimenting with the :mod:`re`
module. If you have :mod:`tkinter` available, you may also want to look at
-:file:`Tools/demo/redemo.py`, a demonstration program included with the
+:source:`Tools/demo/redemo.py`, a demonstration program included with the
Python distribution. It allows you to enter REs and strings, and displays
whether the RE matches or fails. :file:`redemo.py` can be quite useful when
trying to debug a complicated RE. Phil Schwartz's `Kodos
@@ -495,7 +495,7 @@ 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 the now deprecated :file:`xmllib.py`::
+from the now-defunct Python 2 standard :mod:`xmllib` module::
ref = re.compile( ... )
entityref = re.compile( ... )