Exemple #1
0
 def __init__(self, nbits=32):
     VGeneric.__init__(self)
     self.nbits = nbits
Exemple #2
0
 def __init__(self, el_type, alloc_count):
     VGeneric.__init__(self)
     self.el_type = el_type
     self.alloc_count = alloc_count
Exemple #3
0
 def __init__(self, nbits=32):
     VGeneric.__init__(self)
     self.nbits = nbits
Exemple #4
0
 def __init__(self, el_type, alloc_count):
     VGeneric.__init__(self)
     self.el_type = el_type
     self.alloc_count = alloc_count
Exemple #5
0
 def __init__(self, el_init, count):
     VGeneric.__init__(self)
     self.el_init = el_init
     self.count = count
     if not count:
         raise TypeError("Arrays must have at least one element")