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