]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove the doc string -- it doesn't tell the truth.
authorGuido van Rossum <guido@python.org>
Fri, 29 May 1998 20:08:35 +0000 (20:08 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 29 May 1998 20:08:35 +0000 (20:08 +0000)
Demo/tkinter/guido/redemo.py

index 1502b9df5c73d3673fe329e46f142fdcf7c56a82..535e75606bd878c29594344979c48158e3c19ebe 100644 (file)
@@ -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