(self, r, s, length)
| 22 | __slots__ = ['length', 'r', 's'] |
| 23 | |
| 24 | def __init__(self, r, s, length): |
| 25 | object.__setattr__(self, 'r', r) |
| 26 | object.__setattr__(self, 's', s) |
| 27 | object.__setattr__(self, 'length', length) |
| 28 | |
| 29 | @classmethod |
| 30 | def stream_deserialize(cls, f): |
nothing calls this directly
no test coverage detected