(self)
| 1337 | pydevd_sys_monitoring.restart_events() |
| 1338 | |
| 1339 | def clear_dont_trace_start_end_patterns_caches(self): |
| 1340 | # When start/end patterns are changed we must clear all caches which would be |
| 1341 | # affected by a change in get_file_type() and reset the tracing function |
| 1342 | # as places which were traced may no longer need to be traced and vice-versa. |
| 1343 | self.on_breakpoints_changed() |
| 1344 | _CACHE_FILE_TYPE.clear() |
| 1345 | self._clear_caches() |
| 1346 | |
| 1347 | def _exclude_by_filter(self, frame, absolute_filename): |
| 1348 | """ |
no test coverage detected