This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author nvetoshkin
Recipients nvetoshkin
Date 2010-02-21.19:14:53
SpamBayes Score 0.0014038966
Marked as misclassified No
Message-id <1266779695.23.0.617672066685.issue7978@psf.upfronthosting.co.za>
In-reply-to
Content
SocketServer's handle_request function uses "select" call to handle io, but sending POSIX signal will result in 'Interrupted system call' exception raised. After that Paste (http://pythonpaste.org/) http server will crash.
I suppose EINTR must be handled properly (i.e. syscall must be restarted silently) on SocketServer's side. That must be pretty easy task.
History
Date User Action Args
2010-02-21 19:14:55nvetoshkinsetrecipients: + nvetoshkin
2010-02-21 19:14:55nvetoshkinsetmessageid: <1266779695.23.0.617672066685.issue7978@psf.upfronthosting.co.za>
2010-02-21 19:14:53nvetoshkinlinkissue7978 messages
2010-02-21 19:14:53nvetoshkincreate