(self, state)
| 379 | self._count = 0 |
| 380 | |
| 381 | def __setstate__(self, state): |
| 382 | (self._parties, self._action, self._timeout, |
| 383 | self._cond, self._wrapper) = state |
| 384 | self._array = self._wrapper.create_memoryview().cast('i') |
| 385 | |
| 386 | def __getstate__(self): |
| 387 | return (self._parties, self._action, self._timeout, |
no test coverage detected