コード例 #1
0
ファイル: test_mixin.py プロジェクト: SantosJGND/Nlas
 def __deepcopy__(self, memo):
     copy = self.__class__(metadata=None)
     copy._metadata = MetadataMixin._deepcopy_(self, memo)
     return copy
コード例 #2
0
ファイル: test_mixin.py プロジェクト: SantosJGND/Nlas
 def __ne__(self, other):
     return MetadataMixin._ne_(self, other)
コード例 #3
0
ファイル: test_mixin.py プロジェクト: SantosJGND/Nlas
 def __copy__(self):
     copy = self.__class__(metadata=None)
     copy._metadata = MetadataMixin._copy_(self)
     return copy
コード例 #4
0
ファイル: test_mixin.py プロジェクト: SantosJGND/Nlas
 def __init__(self, metadata=None):
     MetadataMixin._init_(self, metadata=metadata)
コード例 #5
0
ファイル: test_mixin.py プロジェクト: SantosJGND/Nlas
 def __eq__(self, other):
     return MetadataMixin._eq_(self, other)
コード例 #6
0
ファイル: test_mixin.py プロジェクト: ElDeveloper/biolopy
 def __deepcopy__(self, memo):
     copy = self.__class__(metadata=None)
     copy._metadata = MetadataMixin._deepcopy_(self, memo)
     return copy
コード例 #7
0
ファイル: test_mixin.py プロジェクト: ElDeveloper/biolopy
 def __copy__(self):
     copy = self.__class__(metadata=None)
     copy._metadata = MetadataMixin._copy_(self)
     return copy
コード例 #8
0
ファイル: test_mixin.py プロジェクト: ElDeveloper/biolopy
 def __ne__(self, other):
     return MetadataMixin._ne_(self, other)
コード例 #9
0
ファイル: test_mixin.py プロジェクト: ElDeveloper/biolopy
 def __eq__(self, other):
     return MetadataMixin._eq_(self, other)
コード例 #10
0
ファイル: test_mixin.py プロジェクト: ElDeveloper/biolopy
 def __init__(self, metadata=None):
     MetadataMixin._init_(self, metadata=metadata)