summaryrefslogtreecommitdiffstats
path: root/Demo/stdwin/TestTextEdit.py
diff options
context:
space:
mode:
Diffstat (limited to 'Demo/stdwin/TestTextEdit.py')
-rwxr-xr-xDemo/stdwin/TestTextEdit.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/Demo/stdwin/TestTextEdit.py b/Demo/stdwin/TestTextEdit.py
deleted file mode 100755
index b15b049..0000000
--- a/Demo/stdwin/TestTextEdit.py
+++ /dev/null
@@ -1,13 +0,0 @@
-#! /usr/bin/env python
-
-# Test TextEdit widgets
-
-def main():
- from TextEdit import TextEdit
- from WindowParent import WindowParent, MainLoop
- w = WindowParent().create('Test TextEdit', (0, 0))
- t = TextEdit().create(w, (40, 4))
- w.realize()
- MainLoop()
-
-main()