summaryrefslogtreecommitdiffstats
path: root/Demo/tkinter
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-05-29 20:08:35 (GMT)
committerGuido van Rossum <guido@python.org>1998-05-29 20:08:35 (GMT)
commit554244987563cab1107c6ea725e764dd05c0598c (patch)
tree2e192aff44d3032fd470ef1da5d34ce7d74ec9cb /Demo/tkinter
parent0da45c4089827fc1cdbaf478f3e682c005bee081 (diff)
downloadcpython-554244987563cab1107c6ea725e764dd05c0598c.zip
cpython-554244987563cab1107c6ea725e764dd05c0598c.tar.gz
cpython-554244987563cab1107c6ea725e764dd05c0598c.tar.bz2
Remove the doc string -- it doesn't tell the truth.
Diffstat (limited to 'Demo/tkinter')
-rw-r--r--Demo/tkinter/guido/redemo.py14
1 files changed, 1 insertions, 13 deletions
diff --git a/Demo/tkinter/guido/redemo.py b/Demo/tkinter/guido/redemo.py
index 1502b9d..535e756 100644
--- a/Demo/tkinter/guido/redemo.py
+++ b/Demo/tkinter/guido/redemo.py
@@ -1,16 +1,4 @@
-"""Basic regular expression demostration facility (Perl style syntax).
-
-This displays a window with two type-in boxes. In the top box, you
-enter a Perl style regular expression. In the bottom box, you enter a
-string. The first match in the string of the regular expression is
-highlighted with a yellow background (or red if the match is empty --
-then the character at the match is highlighted). The highlighting is
-continuously updated. At the bottom are a number of checkboxes which
-control the regular expression options used (see the re module for
-descriptions). When there's no match, or when the regular expression
-is syntactically incorrect, an error message is displayed.
-
-"""
+"""Basic regular expression demostration facility (Perl style syntax)."""
from Tkinter import *
import re