예제 #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
 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)