This is an interface class for the a stateless merge tool. Concrete
merge tools should inherit from it
|
__eq__(self,
x)
Equality operator (==), compare the IMergeTool properties which are
declared as [comparable]. |
source code
|
|
|
__init__(self,
*args,
**kwds)
GPI IMergeTool object constructor: IMergeTool() : create imergetool
with default settings; IMergeTool(i) : make a copy of i;
IMergeTool(i,x=a,...): make a copy of i and set property 'x' to a,
etc.. |
source code
|
|
|
__ne__(self,
x)
Non-equality operator (!=). |
source code
|
|
|
|
|
|
|
__str__(self)
Return a printable string representing IMergeTool object as a tree of
properties. |
source code
|
|
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__sizeof__ ,
__subclasshook__
|