コード例 #1
0
 def __init__(self, sourceCollection=None):
     """Sets the initial state of self, which includes
     the contents of sourceCollection, if it's present."""
     LinkedBag.__init__(self, sourceCollection)
コード例 #2
0
ファイル: linkedset.py プロジェクト: QaziPython/CS-Books
 def __init__(self, sourceCollection = None):
     """Sets the initial state of self, which includes the
     contents of sourceCollection, if it's present."""
     LinkedBag.__init__(self, sourceCollection)
コード例 #3
0
ファイル: linkedset.py プロジェクト: zcking/PyDSA
 def __init__(self, sourceCollection=None):
     """Sets the initial state of self, which includes the
     contents of sourceCollection, if it's present."""
     # Nothing unique about init apart from parent's
     LinkedBag.__init__(self, sourceCollection)
コード例 #4
0
 def __init__(self, sourceCollection=None):
     LinkedBag.__init__(self, sourceCollection)