(self)
| 737 | self._chained_exception_index = 0 |
| 738 | |
| 739 | def _get_asyncio_task(self): |
| 740 | try: |
| 741 | task = asyncio.current_task() |
| 742 | except RuntimeError: |
| 743 | task = None |
| 744 | return task |
| 745 | |
| 746 | def interaction(self, frame, tb_or_exc): |
| 747 | # Restore the previous signal handler at the Pdb prompt. |