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

Function _enumerate

Lib/threading.py:1516–1518  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

Callers 1

_after_forkFunction · 0.85

Calls 2

listClass · 0.85
valuesMethod · 0.45

Tested by

no test coverage detected