summaryrefslogtreecommitdiff
path: root/Demo/stdwin/TestTextEdit.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-05-11 14:43:52 +0000
committerGuido van Rossum <guido@python.org>2000-05-11 14:43:52 +0000
commitdab6cb8f6dacc107e9482976ca2f8e0313f05131 (patch)
tree88eef631a9c853ed763bb1be126ad3a11d6185db /Demo/stdwin/TestTextEdit.py
parentede8c6eea1da425960b27ed735a41bc23a72a89a (diff)
downloadcpython-git-dab6cb8f6dacc107e9482976ca2f8e0313f05131.tar.gz
removing more stdwin users
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 b15b049c43..0000000000
--- 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()