()
| 1514 | return active_count() |
| 1515 | |
| 1516 | def _enumerate(): |
| 1517 | # Same as enumerate(), but without the lock. Internal use only. |
| 1518 | return list(_active.values()) + list(_limbo.values()) |
| 1519 | |
| 1520 | def enumerate(): |
| 1521 | """Return a list of all Thread objects currently alive. |
no test coverage detected