(self)
| 5 | class PeerHashfield(object): |
| 6 | __slots__ = ("storage", "time_changed", "append", "remove", "tobytes", "frombytes", "__len__", "__iter__") |
| 7 | def __init__(self): |
| 8 | self.storage = self.createStorage() |
| 9 | self.time_changed = time.time() |
| 10 | |
| 11 | def createStorage(self): |
| 12 | storage = array.array("H") |
nothing calls this directly
no test coverage detected