(self, thread)
| 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[:] |
no test coverage detected