Charles-François Natali added the comment:

> I would not say that is a bug, but there is a write(wakeup_fd) call
> with ignored return code and maybe this can be improved to an output
> to stderr, or maybe a better solution.

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).
There's a contract to respect here, and if the user doesn't follow it, trouble 
will follow: for example, if the passed FD isn't non-blocking, then the signal 
handler can deadlock if the write() blocks (pipe, socket, whatever).

----------
nosy: +neologix

_______________________________________
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