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

Method append

Lib/socketserver.py:646–650  ·  view source on GitHub ↗
(self, thread)

Source from the content-addressed store, hash-verified

644 Joinable list of all non-daemon threads.
645 """
646 def append(self, thread):
647 self.reap()
648 if thread.daemon:
649 return
650 super().append(thread)
651
652 def pop_all(self):
653 self[:], result = [], self[:]

Callers 1

process_requestMethod · 0.45

Calls 2

reapMethod · 0.95
superClass · 0.85

Tested by

no test coverage detected