MCPcopy Index your code
hub / github.com/RustPython/RustPython / _get

Method _get

Lib/test/test_queue.py:723–727  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

721 raise FailingQueueException("You Lose")
722 return Queue._put(self, item)
723 def _get(self):
724 if self.fail_next_get:
725 self.fail_next_get = False
726 raise FailingQueueException("You Lose")
727 return Queue._get(self)
728
729 self.FailingQueue = FailingQueue
730

Callers

nothing calls this directly

Calls 2

_getMethod · 0.45

Tested by

no test coverage detected