File: TestDirList.py

package info (click to toggle)
python 1.5.2-10potato11
  • links: PTS
  • area: main
  • in suites: potato
  • size: 13,340 kB
  • ctags: 36,680
  • sloc: ansic: 97,117; python: 88,266; makefile: 2,518; lisp: 2,363; sh: 882
file content (18 lines) | stat: -rwxr-xr-x 276 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! /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()