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

Method __init__

Lib/test/test_queue.py:716–719  ·  view source on GitHub ↗
(self, *args)

Source from the content-addressed store, hash-verified

714
715 class FailingQueue(Queue):
716 def __init__(self, *args):
717 self.fail_next_put = False
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

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected