mirror of https://github.com/python/cpython
Can't return 0 from void function...
This commit is contained in:
parent
c8b6df9004
commit
296b4751e1
|
@ -329,7 +329,7 @@ PyErr_Print()
|
|||
PyObject *exception, *v, *tb, *f;
|
||||
PyErr_Fetch(&exception, &v, &tb);
|
||||
if (exception == NULL)
|
||||
return 0;
|
||||
return;
|
||||
if (exception == PyExc_SystemExit) {
|
||||
err = Py_FlushLine();
|
||||
fflush(stdout);
|
||||
|
|
Loading…
Reference in New Issue