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

Method _setup_queues

Lib/multiprocessing/pool.py:345–349  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

343 wrap_exception)
344
345 def _setup_queues(self):
346 self._inqueue = self._ctx.SimpleQueue()
347 self._outqueue = self._ctx.SimpleQueue()
348 self._quick_put = self._inqueue._writer.send
349 self._quick_get = self._outqueue._reader.recv
350
351 def _check_running(self):
352 if self._state != RUN:

Callers 1

__init__Method · 0.95

Calls 1

SimpleQueueMethod · 0.80

Tested by

no test coverage detected