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

Method close

Lib/multiprocessing/queues.py:138–143  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

136 return self.put(obj, False)
137
138 def close(self):
139 self._closed = True
140 close = self._close
141 if close:
142 self._close = None
143 close()
144
145 def join_thread(self):
146 debug('Queue.join_thread()')

Calls 1

closeFunction · 0.50