(self, state)
| 386 | self._count = 0 |
| 387 | |
| 388 | def __setstate__(self, state): |
| 389 | (self._parties, self._action, self._timeout, |
| 390 | self._cond, self._wrapper) = state |
| 391 | self._array = self._wrapper.create_memoryview().cast('i') |
| 392 | |
| 393 | def __getstate__(self): |
| 394 | return (self._parties, self._action, self._timeout, |
no test coverage detected