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 orenti
Recipients
Date 2007-01-07.18:24:23
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
You may have encountered this on sockets but *all* Python I/O does not handle restart on EINTR. 

The right place to fix this is probably in C, not the Python library. The places where an I/O operation could be interrupted are practically anywhere the GIL is released. This kind of change is likely to be controversial.
History
Date User Action Args
2007-08-23 15:56:00adminlinkissue1628205 messages
2007-08-23 15:56:00admincreate