Antoine Pitrou added the comment:

> The problem is that it's called from the signal handler, so there's not 
> much we can do here (and certainly not log a warning or raise an
> exception).

However, I think the errno could be passed via the "void *" argument to 
Py_AddPendingCall. Then checksignals_witharg can raise an error if the received 
errno is non-zero.

I agree with Felipe that issues here can be difficult to diagnose. For example 
the fd could get mistakingly closed, but the write() EBADF would then be 
ignored and the expected signal wakeups would be lost.

----------
nosy: +pitrou

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue16105>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to