(self, state)
| 322 | return Queue.__getstate__(self) + (self._cond, self._unfinished_tasks) |
| 323 | |
| 324 | def __setstate__(self, state): |
| 325 | Queue.__setstate__(self, state[:-2]) |
| 326 | self._cond, self._unfinished_tasks = state[-2:] |
| 327 | |
| 328 | def put(self, obj, block=True, timeout=None): |
| 329 | if self._closed: |
nothing calls this directly
no test coverage detected