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