Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.7k
Closed
Description
If an error happens in the callback or in converting result of the callback, it is handled by callingPyErr_FormatUnraisable(). If an error happens in preparing arguments for the callback, it is handled in different way -- some message is printed to stderr and thenPyErr_Print() is called. In one case the error is not properly handled.
It is better to handle all errors in the uniform way.PyErr_Print() is not suitable for it because it treats SystemExit specially and has a side effect of setting sys.last_exc` and other variables.