()
| 1507 | return active_count() |
| 1508 | |
| 1509 | def _enumerate(): |
| 1510 | # Same as enumerate(), but without the lock. Internal use only. |
| 1511 | return list(_active.values()) + list(_limbo.values()) |
| 1512 | |
| 1513 | def enumerate(): |
| 1514 | """Return a list of all Thread objects currently alive. |
no test coverage detected
searching dependent graphs…