im calling them keyed arrays because if i knew what they were called i could find the answer myself =-)
ok, for example:
parser = OptionParser(conflict_handler="resolve")
parser.add_option("-x", dest="var_x", help="")
parser.add_option("-y", dest="var_y", help="")
(options, args) = parser.parse_args()
generates an option object that can be used like this:
foobar = options.var_x
what are these called and where would i find some documentation on how to create and use them?