summaryrefslogtreecommitdiffstats
path: root/Demo/stdwin/TestDirList.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-05-11 14:43:52 (GMT)
committerGuido van Rossum <guido@python.org>2000-05-11 14:43:52 (GMT)
commitdab6cb8f6dacc107e9482976ca2f8e0313f05131 (patch)
tree88eef631a9c853ed763bb1be126ad3a11d6185db /Demo/stdwin/TestDirList.py
parentede8c6eea1da425960b27ed735a41bc23a72a89a (diff)
downloadcpython-dab6cb8f6dacc107e9482976ca2f8e0313f05131.zip
cpython-dab6cb8f6dacc107e9482976ca2f8e0313f05131.tar.gz
cpython-dab6cb8f6dacc107e9482976ca2f8e0313f05131.tar.bz2
removing more stdwin users
Diffstat (limited to 'Demo/stdwin/TestDirList.py')
-rwxr-xr-xDemo/stdwin/TestDirList.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/Demo/stdwin/TestDirList.py b/Demo/stdwin/TestDirList.py
deleted file mode 100755
index 321c2d9..0000000
--- a/Demo/stdwin/TestDirList.py
+++ /dev/null
@@ -1,18 +0,0 @@
-#! /usr/bin/env python
-
-# TestDirList
-
-from DirList import DirListWindow
-from WindowParent import MainLoop
-
-def main():
- import sys
- args = sys.argv[1:]
- if not args:
- args = ['.']
- # Mac: args = [':']
- for arg in args:
- w = DirListWindow().create(arg)
- MainLoop()
-
-main()