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

Method SimpleQueue

Lib/multiprocessing/context.py:110–113  ·  view source on GitHub ↗

Returns a queue object

(self)

Source from the content-addressed store, hash-verified

108 return JoinableQueue(maxsize, ctx=self.get_context())
109
110 def SimpleQueue(self):
111 '''Returns a queue object'''
112 from .queues import SimpleQueue
113 return SimpleQueue(ctx=self.get_context())
114
115 def Pool(self, processes=None, initializer=None, initargs=(),
116 maxtasksperchild=None):

Callers 12

test_empty_exceptionsMethod · 0.80
test_emptyMethod · 0.80
test_closeMethod · 0.80
test_closedMethod · 0.80
__init__Method · 0.80
__init__Method · 0.80
__init__Method · 0.80
_setup_queuesMethod · 0.80
_setup_queuesMethod · 0.80

Calls 2

get_contextMethod · 0.95
SimpleQueueClass · 0.85