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

Method put_nowait

Lib/multiprocessing/queues.py:135–136  ·  view source on GitHub ↗
(self, obj)

Source from the content-addressed store, hash-verified

133 return self.get(False)
134
135 def put_nowait(self, obj):
136 return self.put(obj, False)
137
138 def close(self):
139 self._closed = True

Callers

nothing calls this directly

Calls 1

putMethod · 0.95

Tested by

no test coverage detected