(self, item)
| 718 | self.fail_next_get = False |
| 719 | Queue.__init__(self, *args) |
| 720 | def _put(self, item): |
| 721 | if self.fail_next_put: |
| 722 | self.fail_next_put = False |
| 723 | raise FailingQueueException("You Lose") |
| 724 | return Queue._put(self, item) |
| 725 | def _get(self): |
| 726 | if self.fail_next_get: |
| 727 | self.fail_next_get = False |
nothing calls this directly
no test coverage detected