summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-03-31 15:43:20 (GMT)
committerGeorg Brandl <georg@python.org>2009-03-31 15:43:20 (GMT)
commit382edff28985d183e67bbe5bf93a5548f12a2fea (patch)
tree6d85ad88459ba1ca78a950cbe023fda40b5dc9c9
parent269627534811b6b0a5e73fcc2a0298b6048cc3e8 (diff)
downloadcpython-382edff28985d183e67bbe5bf93a5548f12a2fea.zip
cpython-382edff28985d183e67bbe5bf93a5548f12a2fea.tar.gz
cpython-382edff28985d183e67bbe5bf93a5548f12a2fea.tar.bz2
#5519: remove reference to Kodos, which seems dead.
-rw-r--r--Doc/library/re.rst8
1 files changed, 1 insertions, 7 deletions
diff --git a/Doc/library/re.rst b/Doc/library/re.rst
index 7131a6f..a802281 100644
--- a/Doc/library/re.rst
+++ b/Doc/library/re.rst
@@ -8,12 +8,9 @@
.. sectionauthor:: Andrew M. Kuchling <amk@amk.ca>
-
-
This module provides regular expression matching operations similar to
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
-always available.
+Unicode strings as well as 8-bit strings.
Regular expressions use the backslash character (``'\'``) to indicate
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
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: