(self)
| 1704 | self.activate_gui_function = None |
| 1705 | |
| 1706 | def _call_input_hook(self): |
| 1707 | try: |
| 1708 | from pydev_ipython.inputhook import get_inputhook |
| 1709 | |
| 1710 | inputhook = get_inputhook() |
| 1711 | if inputhook: |
| 1712 | inputhook() |
| 1713 | except: |
| 1714 | pass |
| 1715 | |
| 1716 | def notify_skipped_step_in_because_of_filters(self, frame): |
| 1717 | self.writer.add_command(self.cmd_factory.make_skipped_step_in_because_of_filters(self, frame)) |
no outgoing calls
no test coverage detected