diff options
author | Guido van Rossum <guido@python.org> | 1991-12-30 16:02:10 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-12-30 16:02:10 (GMT) |
commit | d404569b97acd4f55e3f3d0b59c50ed357eb123c (patch) | |
tree | dc23ade57819a6fb189ccc97cbad802ad7ff44a0 /Lib/stdwin | |
parent | 9b4e1b36f9a083424d7dd1afc54d46126120b3ea (diff) | |
download | cpython-d404569b97acd4f55e3f3d0b59c50ed357eb123c.zip cpython-d404569b97acd4f55e3f3d0b59c50ed357eb123c.tar.gz cpython-d404569b97acd4f55e3f3d0b59c50ed357eb123c.tar.bz2 |
New class syntax
Diffstat (limited to 'Lib/stdwin')
-rwxr-xr-x | Lib/stdwin/TextEdit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/stdwin/TextEdit.py b/Lib/stdwin/TextEdit.py index 5473f2b..540692c 100755 --- a/Lib/stdwin/TextEdit.py +++ b/Lib/stdwin/TextEdit.py @@ -5,7 +5,7 @@ from stdwinevents import * -class TextEdit(): +class TextEdit: # def create(self, (parent, (cols, rows))): parent.addchild(self) |