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-03-09.07:35:37
SpamBayes Score 0.0039705103
Marked as misclassified No
Message-id <1268120139.91.0.593316011845.issue7978@psf.upfronthosting.co.za>
In-reply-to
Content
Wrapping select in (taken from twisted sources) can help:
def untilConcludes(f, *a, **kw):
    while True:
        try:
            return f(*a, **kw)
        except (IOError, OSError), e:
            if e.args[0] == errno.EINTR:
                continue
            raise
History
Date User Action Args
2010-03-09 07:35:40nvetoshkinsetrecipients: + nvetoshkin
2010-03-09 07:35:39nvetoshkinsetmessageid: <1268120139.91.0.593316011845.issue7978@psf.upfronthosting.co.za>
2010-03-09 07:35:37nvetoshkinlinkissue7978 messages
2010-03-09 07:35:37nvetoshkincreate