diff --git a/Ghidra/Features/PyGhidra/src/main/py/README.md b/Ghidra/Features/PyGhidra/src/main/py/README.md index 94d12d5288..417173af38 100644 --- a/Ghidra/Features/PyGhidra/src/main/py/README.md +++ b/Ghidra/Features/PyGhidra/src/main/py/README.md @@ -578,6 +578,7 @@ __3.1.0__ * PyGhidra now includes a [`py.typed`](https://typing.python.org/en/latest/spec/distributing.html#packaging-type-information) marker file to inform type checkers that typing is supported. +* The PyGhidra interactive console no longer restarts when a `SyntaxError` occurs. __3.0.2__ * Fixed an issue that prevented [`pyghidra.analysis_properties()`](#pyghidraanalysis_properties) diff --git a/Ghidra/Features/PyGhidra/src/main/py/src/pyghidra/internal/plugin/plugin.py b/Ghidra/Features/PyGhidra/src/main/py/src/pyghidra/internal/plugin/plugin.py index b19cc0f06d..76d1e93c56 100644 --- a/Ghidra/Features/PyGhidra/src/main/py/src/pyghidra/internal/plugin/plugin.py +++ b/Ghidra/Features/PyGhidra/src/main/py/src/pyghidra/internal/plugin/plugin.py @@ -291,9 +291,9 @@ class PyConsole(InteractiveConsole): finally: self._writer = self._out - def showsyntaxerror(self, filename=None): + def showsyntaxerror(self, filename=None, **kwargs): with self.redirect_writer(): - super().showsyntaxerror(filename=filename) + super().showsyntaxerror(filename=filename, **kwargs) def showtraceback(self) -> None: with self.redirect_writer():