__params
dict() -> new empty dictionary.
dict(mapping) -> new dictionary initialized from a mapping object's
(key, value) pairs.
dict(seq) -> new dictionary initialized as if via:
d = {}
for k, v in seq:
d[k] = v
dict(**kwargs) -> new dictionary initialized with the name=value pairs
in the keyword argument list. For example: dict(one=1, two=2)
- Value:
{'apply_output_fns': <param.Boolean object at 0xb20d06c>,
'display': <param.Boolean object at 0xb20df2c>,
'divisions': <param.Integer object at 0xb3200bc>,
'duration': <param.Number object at 0xb30ff5c>,
'generator_sheets': <param.List object at 0xb20d2ec>,
'name': <param.parameterized.String object at 0xb32e26c>,
'offset': <param.Number object at 0xb30ff14>,
'pattern_presenter': <param.Callable object at 0xb316fb4>,
...
|
|