slackbuilds_ponce/python/python3-monotonic/README
RSKYS 93b3b1107a
python3-monotonic: Added (monotonic, required in python3)
Signed-off-by: RSKYS <Pouria.rz@outlook.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2021-11-20 07:13:02 +07:00

10 lines
489 B
Text

This module provides a monotonic() function which returns the value (in
fractional seconds) of a clock which never goes backwards.
On Python 3.3 or newer, monotonic will be an alias of time.monotonic from the
standard library. On older versions, it will fall back to an equivalent
Linux implementation: clock_gettime.
If no suitable implementation exists for the current platform, attempting to
import this module (or to import from it) will cause a RuntimeError exception
to be raised.