-
craftutils.wrap.psfex.Parameter.copy(name=
None, description=None, default=None, unit=None, getter=None, setter=None, fixed=False, tied=False, min=None, max=None, bounds=None, prior=None, posterior=None) Make a copy of this Parameter, overriding any of its core attributes in the process (or an exact copy).
The arguments to this method are the same as those for the Parameter initializer. This simply returns a new Parameter instance with any or all of the attributes overridden, and so returns the equivalent of:
Parameter(self.name, self.description, ...)