Browse Source

protect this call, too

pull/2332/head
Benjamin Peterson 14 years ago
parent
commit
f235989e0c
  1. 2
      Modules/threadmodule.c

2
Modules/threadmodule.c

@ -627,8 +627,8 @@ t_bootstrap(void *boot_raw)
PyFile_WriteObject(boot->func, file, 0);
else
PyObject_Print(boot->func, stderr, 0);
PyErr_Restore(exc, value, tb);
PySys_WriteStderr("\n");
PyErr_Restore(exc, value, tb);
PyErr_PrintEx(0);
}
}

Loading…
Cancel
Save