tests/test_opts.out
author Alexander Solovyov <piranha@piranha.org.ua>
Sun, 10 Jan 2010 23:05:37 +0200
changeset 98 f215aef1d1ee
parent 96 82aaeccffbec
child 99 a77c4a82e836
permissions -rw-r--r--
update tests

test_opts.py [-l HOST] DIR
Command with option declaration as keyword arguments

    Otherwise it's the same as previous command
options:

 -l --listen     ip to listen on (default: localhost)
 -p --port       port to listen on (default: 8000)
 -d --daemonize  daemonize process
    --pid-file   name of file to write process ID to
 -h --help       show help
test_opts.py [-l HOST] DIR
Command with option declaration as keyword arguments

    Otherwise it's the same as previous command
options:

 -l --listen     ip to listen on (default: localhost)
 -p --port       port to listen on (default: 8000)
 -d --daemonize  daemonize process
    --pid-file   name of file to write process ID to
 -h --help       show help
{'pid_file': '', 'daemonize': False, 'dirname': '.', 'port': 8000, 'listen': 'localhost'}