From: Berker Peksag Date: Fri, 24 Jun 2016 05:54:43 +0000 (+0300) Subject: Issue #27378: Remove an outdated reference from regex HOWTO X-Git-Tag: v3.6.0a3~89^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=79af27ef2e59025fdcfc02233cb9772363065bed;p=thirdparty%2FPython%2Fcpython.git Issue #27378: Remove an outdated reference from regex HOWTO Patch by Matt Morrison. --- diff --git a/Doc/howto/regex.rst b/Doc/howto/regex.rst index de3f4612cc6d..371ef59ff52b 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 -`_ 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::