Shared code to prepare debugging by installing traces and registering threads
(self)
| 2568 | pydev_log.debug("PyDB.dispose_and_kill_all_pydevd_threads: finished") |
| 2569 | |
| 2570 | def prepare_to_run(self): |
| 2571 | """Shared code to prepare debugging by installing traces and registering threads""" |
| 2572 | self.patch_threads() |
| 2573 | self.start_auxiliary_daemon_threads() |
| 2574 | |
| 2575 | def patch_threads(self): |
| 2576 | if PYDEVD_USE_SYS_MONITORING: |
no test coverage detected