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

Method _setup_queues

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

Source from the content-addressed store, hash-verified

930 Pool.__init__(self, processes, initializer, initargs)
931
932 def _setup_queues(self):
933 self._inqueue = queue.SimpleQueue()
934 self._outqueue = queue.SimpleQueue()
935 self._quick_put = self._inqueue.put
936 self._quick_get = self._outqueue.get
937
938 def _get_sentinels(self):
939 return [self._change_notifier._reader]

Callers

nothing calls this directly

Calls 1

SimpleQueueMethod · 0.80

Tested by

no test coverage detected