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 yselivanov
Recipients gvanrossum, pitrou, vstinner, yselivanov
Date 2014-01-15.23:18:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1389827902.43.0.365914155397.issue20275@psf.upfronthosting.co.za>
In-reply-to
Content
Victor,

Re your patch: since it's not really time syscalls, and Guido said he's using this debug code, how about we just have something like:

        t0 = self.time()
        event_list = self._selector.select(timeout)
        t1 = self.time()
        if t1 - t0 >= 1:
            argstr = '' if timeout is None else ' {:.3f}'.format(timeout)
            level = logging.INFO
            logger.log(level, 'poll%s took %.3f seconds', argstr, t1-t0)

?
History
Date User Action Args
2014-01-15 23:18:22yselivanovsetrecipients: + yselivanov, gvanrossum, pitrou, vstinner
2014-01-15 23:18:22yselivanovsetmessageid: <1389827902.43.0.365914155397.issue20275@psf.upfronthosting.co.za>
2014-01-15 23:18:22yselivanovlinkissue20275 messages
2014-01-15 23:18:22yselivanovcreate