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

Method __init__

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

Source from the content-addressed store, hash-verified

712
713 class FailingQueue(Queue):
714 def __init__(self, *args):
715 self.fail_next_put = False
716 self.fail_next_get = False
717 Queue.__init__(self, *args)
718 def _put(self, item):
719 if self.fail_next_put:
720 self.fail_next_put = False

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected