MCPcopy Index your code
hub / github.com/RustPython/RustPython / append

Method append

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

Source from the content-addressed store, hash-verified

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

Callers 1

process_requestMethod · 0.45

Calls 2

reapMethod · 0.95
superClass · 0.85

Tested by

no test coverage detected