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