|
__copyTo(self,
instance,
*args,
**kwargs)
Internal Method with minimal checking |
source code
|
|
|
duplicate(self,
*args,
**kwargs)
Implements a c-style copy constructor by creating a new instance of self
and applying the copyFrom methods from base to all classes implementing the copyfrom
method. |
source code
|
|
|
copyTo(self,
instance,
*args,
**kwargs)
Copy the values of ourselves onto the given instance which must be an
instance of our class to be compatible. |
source code
|
|
|
|
Inherited from Interface :
supports
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__init__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|
|
|
|
copyFrom(self,
other,
*args,
**kwargs)
Copy the data from other into self as good as possible
Only copy the data that is unique to your specific class - the data of other
classes will be taken care of by them ! |
source code
|
|