Searched refs:numElements (Results 1 – 1 of 1) sorted by relevance
27 def __init__(self, numElements): argument28 self.count = numElements29 if 0 == (numElements % 8):30 self.data = bytearray(numElements/8)33 self.data = bytearray(1+numElements/8)