[Python-Dev] Drop the new time.wallclock() function?

Victor Stinner victor.stinner at gmail.com
Sat Mar 24 00:07:45 CET 2012


2012/3/23 Yury Selivanov <yselivanov.ml at gmail.com>:
> Why can't I use select & threads?  You mean that if a platform does not
> support monotonic clocks it also does not support threads and select sys
> call?

Python 3.3 now uses time.steady(strict=False) in the threading and
queue modules. If we replace it by time.steady(strict=True), you may
get an error if your platform doesn't provide a monotonic clock and so
you cannot use these modules.

Victor


More information about the Python-Dev mailing list