Message 116549 - Python tracker
On 16 Sep, 2010, at 15:40, Armin Ronacher wrote: > > Armin Ronacher <armin.ronacher@active-4.com> added the comment: > >> You conveniently didn't quote the part of my message where I explained >> why I think there may be a problem. > I understand that, but there are already cases in Python where EINTR is handled properly. In fact, quoting socketmodule.c: > > if (res == EINTR && PyErr_CheckSignals()) This looks fine. Ronald