Public Member Functions | |
def | __getattr__ |
def | __setattr__ |
def | define |
def | parse_command_line |
def | parse_config_file |
def | print_help |
A collection of options, a dictionary with object-like access. Normally accessed via static functions in the `tornado.options` module, which reference a global instance.
Definition at line 76 of file options.py.
def tornado.options._Options.__getattr__ | ( | self, | |
name | |||
) |
Definition at line 82 of file options.py.
def tornado.options._Options.__setattr__ | ( | self, | |
name, | |||
value | |||
) |
Definition at line 87 of file options.py.
def tornado.options._Options.define | ( | self, | |
name, | |||
default = None , |
|||
type = None , |
|||
help = None , |
|||
metavar = None , |
|||
multiple = False , |
|||
group = None |
|||
) |
Definition at line 92 of file options.py.
def tornado.options._Options.parse_command_line | ( | self, | |
args = None |
|||
) |
Definition at line 115 of file options.py.
def tornado.options._Options.parse_config_file | ( | self, | |
path | |||
) |
Definition at line 151 of file options.py.
def tornado.options._Options.print_help | ( | self, | |
file = sys.stdout |
|||
) |
Prints all the command line options to stdout.
Definition at line 158 of file options.py.