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)
Exemple #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)
Exemple #3
0
 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)
 def __init__(self, sourceCollection=None):
     LinkedBag.__init__(self, sourceCollection)