Esempio n. 1
0
 def __deepcopy__(self, memo):
     copy = self.__class__(metadata=None)
     copy._metadata = MetadataMixin._deepcopy_(self, memo)
     return copy
Esempio n. 2
0
 def __ne__(self, other):
     return MetadataMixin._ne_(self, other)
Esempio n. 3
0
 def __copy__(self):
     copy = self.__class__(metadata=None)
     copy._metadata = MetadataMixin._copy_(self)
     return copy
Esempio n. 4
0
 def __init__(self, metadata=None):
     MetadataMixin._init_(self, metadata=metadata)
Esempio n. 5
0
 def __eq__(self, other):
     return MetadataMixin._eq_(self, other)
Esempio n. 6
0
 def __deepcopy__(self, memo):
     copy = self.__class__(metadata=None)
     copy._metadata = MetadataMixin._deepcopy_(self, memo)
     return copy
Esempio n. 7
0
 def __copy__(self):
     copy = self.__class__(metadata=None)
     copy._metadata = MetadataMixin._copy_(self)
     return copy
Esempio n. 8
0
 def __ne__(self, other):
     return MetadataMixin._ne_(self, other)
Esempio n. 9
0
 def __eq__(self, other):
     return MetadataMixin._eq_(self, other)
Esempio n. 10
0
 def __init__(self, metadata=None):
     MetadataMixin._init_(self, metadata=metadata)