示例#1
0
 def __init__(self, sourceCollection=None):
     """Sets the initial state of self, which includes the
     contents of sourceCollection, if it's present."""
     ArrayBag.__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."""
     ArrayBag.__init__(self, sourceCollection)
 def __init__(self, sourceCollection = None):
     ArrayBag.__init__(self, sourceCollection)
示例#4
0
 def __init__(self, sourceCollection=None):
     """Sets the initial state of self, which includes the
     contents of sourceCollection, it it's present."""
     # Nothing different about the initialization from the parent's
     ArrayBag.__init__(self, sourceCollection)
示例#5
0
文件: arrayset.py 项目: zcking/PyDSA
 def __init__(self, sourceCollection=None):
     """Sets the initial state of self, which includes the
     contents of sourceCollection, it it's present."""
     # Nothing different about the initialization from the parent's
     ArrayBag.__init__(self, sourceCollection)