This software was developed by the University of Tennessee as part of the Distributed Data Analysis of Neutron Scattering Experiments (DANSE) project funded by the US National Science Foundation.
If you use DANSE applications to do scientific research that leads to publication, we ask that you acknowledge the use of the software with the following sentence:
“This work benefited from DANSE software developed under NSF award DMR-0520547.”
copyright 2008, University of Tennessee
Bases: object
Model adaptor to provide old-style model functionality
alias of type
x.__delattr__(‘name’) <==> del x.name
x.__getattribute__(‘name’) <==> x.name
x.__hash__() <==> hash(x)
Initialization
helper for pickle
helper for pickle
x.__repr__() <==> repr(x)
x.__setattr__(‘name’, value) <==> x.name = value
x.__str__() <==> str(x)
list of weak references to the object (if defined)
Bases: dict
Parameter dictionary used for backward compatibility between the old-style ‘params’ dictionary and the new-style ‘parameters’ dictionary.
alias of type
x.__cmp__(y) <==> cmp(x,y)
x.__delattr__(‘name’) <==> del x.name
x.__delitem__(y) <==> del x[y]
x.__eq__(y) <==> x==y
x.__ge__(y) <==> x>=y
x.__getattribute__(‘name’) <==> x.name
x.__gt__(y) <==> x>y
x.__hash__() <==> hash(x)
Initialization @param parameters: new-style ‘parameters’ dictionary
x.__iter__() <==> iter(x)
x.__le__(y) <==> x<=y
x.__len__() <==> len(x)
x.__lt__(y) <==> x<y
x.__ne__(y) <==> x!=y
helper for pickle
helper for pickle
x.__repr__() <==> repr(x)
x.__setattr__(‘name’, value) <==> x.name = value
x.__str__() <==> str(x)
list of weak references to the object (if defined)
v defaults to None.
If key is not found, d is returned if given, otherwise KeyError is raised
2-tuple; but raise KeyError if D is empty
(if E has keys else: for (k, v) in E: D[k] = v) then: for k in F: D[k] = F[k]