()
| 137 | |
| 138 | |
| 139 | def get_non_pydevd_threads(): |
| 140 | threads = threading.enumerate() |
| 141 | return [t for t in threads if t and not getattr(t, "is_pydev_daemon_thread", False)] |
| 142 | |
| 143 | |
| 144 | if USE_CUSTOM_SYS_CURRENT_FRAMES and IS_PYPY: |
no outgoing calls
no test coverage detected