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 vstinner
Recipients gvanrossum, neologix, python-dev, vstinner
Date 2014-02-10.22:53:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1392072784.58.0.048693402212.issue20505@psf.upfronthosting.co.za>
In-reply-to
Content
> OK, since the resolution is 1 nsec on my Ubuntu

Yeah, Linux always announce 1 nanosecond, even the real resolution is not so good:
https://lkml.org/lkml/2012/2/9/100

On Mac OS X, the resolution is also probably hardcoded to 1 nanosecond. (Python reads the resolution at runtime on Linux, Mac OS X and Windows.)

Since the granularity is back, why not using also the resolution of the selector in asyncio? :-) It would avoid useless calls for free. It can be a private attribute if you don't want to make it public. But I don't see why you would like to hide such data since time.get_clock_info(name).resolution is the same lie (at least on Linux and Mac OS X) :-) It's just a question of exposing OS data. No need to compute the effective resolution.
History
Date User Action Args
2014-02-10 22:53:04vstinnersetrecipients: + vstinner, gvanrossum, neologix, python-dev
2014-02-10 22:53:04vstinnersetmessageid: <1392072784.58.0.048693402212.issue20505@psf.upfronthosting.co.za>
2014-02-10 22:53:04vstinnerlinkissue20505 messages
2014-02-10 22:53:03vstinnercreate