summaryrefslogtreecommitdiffstats
path: root/Demo/stdwin/TestDirList.py
diff options
context:
space:
mode:
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()