(self)
| 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 |
| 728 | raise FailingQueueException("You Lose") |
| 729 | return Queue._get(self) |
| 730 | |
| 731 | self.FailingQueue = FailingQueue |
| 732 |
nothing calls this directly
no test coverage detected