1 __doc__ =
"""The python module holding python bindings to DataObjectHandle""" 8 __slots__ = (
'Path',
'Mode',
'Type')
12 def __init__(self, path, mode='R', _type="unknown_t"):
20 Need especially Configurable.isPropertySet when checked against default. 22 if isinstance(other, DataObjectHandleBase):
23 return self.
Path == other.Path
24 if isinstance(other, str):
25 return self.
Path == other
29 'Unknown equality check: type=%r, repr=%r' % (
type(other), other))
33 This is mandatory if __eq__ is defined. 35 return not self == other
41 return "%s(\"%s\")" % (self.__class__.__name__, self.
__str__())
47 path =
':'.join(i + other
for i
in self.
Path.split(
':'))
51 path =
':'.join(other + i
for i
in self.
Path.split(
':'))
55 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', _type="unknown_t")