(py-indent-right, py-outdent-left): new commands, bound to C-c C-r and
[python/dscho.git] / Demo / stdwin / TestDirList.py
blob7fb45ae4d0511703e21388691e49315a094048af
1 #! /usr/local/bin/python
3 # TestDirList
5 from DirList import DirListWindow
6 from WindowParent import MainLoop
8 def main():
9 import sys
10 args = sys.argv[1:]
11 if not args:
12 args = ['.']
13 # Mac: args = [':']
14 for arg in args:
15 w = DirListWindow().create(arg)
16 MainLoop()
18 main()