MCPcopy Index your code
hub / github.com/python/cpython / _get

Method _get

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

_getMethod · 0.45

Tested by

no test coverage detected