#5519: remove reference to Kodos, which seems dead.

This commit is contained in:
Georg Brandl 2009-03-31 15:43:20 +00:00
parent 2696275348
commit 382edff289
1 changed files with 1 additions and 7 deletions

View File

@ -8,12 +8,9 @@
.. sectionauthor:: Andrew M. Kuchling <amk@amk.ca> .. sectionauthor:: Andrew M. Kuchling <amk@amk.ca>
This module provides regular expression matching operations similar to This module provides regular expression matching operations similar to
those found in Perl. Both patterns and strings to be searched can be those found in Perl. Both patterns and strings to be searched can be
Unicode strings as well as 8-bit strings. The :mod:`re` module is Unicode strings as well as 8-bit strings.
always available.
Regular expressions use the backslash character (``'\'``) to indicate Regular expressions use the backslash character (``'\'``) to indicate
special forms or to allow special characters to be used without invoking special forms or to allow special characters to be used without invoking
@ -43,9 +40,6 @@ fine-tuning parameters.
second edition of the book no longer covers Python at all, but the first second edition of the book no longer covers Python at all, but the first
edition covered writing good regular expression patterns in great detail. edition covered writing good regular expression patterns in great detail.
`Kodos <http://kodos.sf.net/>`_
is a graphical regular expression debugger written in Python.
.. _re-syntax: .. _re-syntax: