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 pitrou
Recipients Ben.Smith, ehohenstein, exarkun, giampaolo.rodola, neologix, pitrou
Date 2010-09-18.17:39:23
SpamBayes Score 5.0070453e-10
Marked as misclassified No
Message-id <1284831561.3220.28.camel@localhost.localdomain>
In-reply-to <1284829786.61.0.792561133944.issue9090@psf.upfronthosting.co.za>
Content
> Unfortunately, select doesn't necessarily update the timeout variable
> with the remaining time, so we can't rely on this. This would mean
> having the select enclosed within gettimeofday and friends, which
> seems a bit overkill...

Well, given the general cost of Python function calls and bytecode
interpretation, it would probably not be much of a runtime overhead. So
it's mainly some additional, not very exciting code to write :-)

(luckily, in 3.2 we have a cross-platform gettimeofday() abstraction in
pytime.h which will ease things quite a bit)
History
Date User Action Args
2010-09-18 17:39:26pitrousetrecipients: + pitrou, exarkun, giampaolo.rodola, neologix, ehohenstein, Ben.Smith
2010-09-18 17:39:24pitroulinkissue9090 messages
2010-09-18 17:39:23pitroucreate