summaryrefslogtreecommitdiffstats
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 22cb86b..c1c5d36 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -530,7 +530,7 @@ PyErr_Print()
PyErr_Fetch(&exception, &v, &tb);
if (exception == NULL)
return;
- if (exception == PyExc_SystemExit) {
+ if (PyErr_GivenExceptionMatches(exception, PyExc_SystemExit)) {
err = Py_FlushLine();
fflush(stdout);
if (v == NULL || v == Py_None)
@@ -555,7 +555,9 @@ PyErr_Print()
fflush(stdout);
if (err == 0)
err = PyTraceBack_Print(tb, f);
- if (err == 0 && exception == PyExc_SyntaxError) {
+ if (err == 0 &&
+ PyErr_GivenExceptionMatches(exception, PyExc_SyntaxError))
+ {
PyObject *message;
char *filename, *text;
int lineno, offset;