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