summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-06-24 05:55:06 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-06-24 05:55:06 (GMT)
commit7577ad32d15244bf1fd6594e42bf9ea10e9998bb (patch)
tree5e130cdaa61971c6ba2f030447f89b6abec361e6 /Doc/howto
parent606e5a6efe77089209f509c15e39182d8f96147b (diff)
parent79af27ef2e59025fdcfc02233cb9772363065bed (diff)
downloadcpython-7577ad32d15244bf1fd6594e42bf9ea10e9998bb.zip
cpython-7577ad32d15244bf1fd6594e42bf9ea10e9998bb.tar.gz
cpython-7577ad32d15244bf1fd6594e42bf9ea10e9998bb.tar.bz2
Issue #27378: Merge from 3.5
Diffstat (limited to 'Doc/howto')
-rw-r--r--Doc/howto/regex.rst4
1 files changed, 1 insertions, 3 deletions
diff --git a/Doc/howto/regex.rst b/Doc/howto/regex.rst
index de3f461..371ef59 100644
--- a/Doc/howto/regex.rst
+++ b/Doc/howto/regex.rst
@@ -374,9 +374,7 @@ module. If you have :mod:`tkinter` available, you may also want to look at
: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
-<http://kodos.sourceforge.net/>`_ is also an interactive tool for developing and
-testing RE patterns.
+trying to debug a complicated RE.
This HOWTO uses the standard Python interpreter for its examples. First, run the
Python interpreter, import the :mod:`re` module, and compile a RE::