blob: 038e89b6e5ee566fda17c46ef6bc428e0a51ad16 [file] [log] [blame]
Guido van Rossum9cf8f331992-03-30 10:54:51 +00001#! /usr/local/python
2
3# Test TextEdit widgets
4
5def main():
6 from TextEdit import TextEdit
7 from WindowParent import WindowParent, MainLoop
8 w = WindowParent().create('Test TextEdit', (0, 0))
9 t = TextEdit().create(w, (40, 4))
10 w.realize()
11 MainLoop()
12
13main()