(self, thread_id, thread, stop_reason)
| 507 | @overrides(AbstractSingleNotificationBehavior.notify_thread_suspended) |
| 508 | @contextmanager |
| 509 | def notify_thread_suspended(self, thread_id, thread, stop_reason): |
| 510 | if self.multi_threads_single_notification: |
| 511 | pydev_log.info("Thread suspend mode: single notification") |
| 512 | with AbstractSingleNotificationBehavior.notify_thread_suspended(self, thread_id, thread, stop_reason): |
| 513 | yield |
| 514 | else: |
| 515 | pydev_log.info("Thread suspend mode: NOT single notification") |
| 516 | yield |
| 517 | |
| 518 | |
| 519 | class _Authentication(object): |
nothing calls this directly
no test coverage detected