1 __doc__ =
"""The python module holding python bindings to DataObjectHandle""" 8 __slots__ = (
'Path',
'Mode')
19 Need especially Configurable.isPropertySet when checked against default. 21 if isinstance(other, DataObjectHandleBase):
22 return self.
Path == other.Path
23 if isinstance(other, basestring):
24 return self.
Path == other
28 'Unknown equality check: type=%r, repr=%r' % (
type(other), other))
32 This is mandatory if __eq__ is defined. 34 return not self == other
40 return "%s(\"%s\")" % (self.__class__.__name__, self.
__str__())
46 path =
':'.join(i + other
for i
in self.Path.split(
':'))
50 path =
':'.join(other + i
for i
in self.Path.split(
':'))
54 self.
Path =
':'.join(i + other
for i
in self.Path.split(
':'))
def toStringProperty(self)
def __radd__(self, other)
def __iadd__(self, other)
def __init__(self, path, mode='R')