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

Method join

Lib/socketserver.py:656–658  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

654 return result
655
656 def join(self):
657 for thread in self.pop_all():
658 thread.join()
659
660 def reap(self):
661 self[:] = (thread for thread in self if thread.is_alive())

Callers 1

server_closeMethod · 0.45

Calls 1

pop_allMethod · 0.95

Tested by

no test coverage detected