python-monotonic 1.6-2 source package in Ubuntu

Changelog

python-monotonic (1.6-2) unstable; urgency=medium

  * Uploading to unstable.

 -- Thomas Goirand <email address hidden>  Wed, 29 Sep 2021 13:16:06 +0200

Upload details

Uploaded by:
Debian OpenStack
Uploaded to:
Sid
Original maintainer:
Debian OpenStack
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release main misc
Noble release main misc
Mantic release main misc
Lunar release main misc
Jammy release main misc

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-monotonic_1.6-2.dsc 2.0 KiB a24f2ff8d901d500ecdaa8ff8b6bfb59c3432824638ef25f97941b78553e1fa9
python-monotonic_1.6.orig.tar.xz 6.7 KiB 981e3cc5530484a327f6e25acd334935d1ce0bbed0ff78b76ac9fcab6baa352b
python-monotonic_1.6-2.debian.tar.xz 2.4 KiB f48dcf79cbd1d8b6cbbc8c757fed9c068789a0432d167b49d74d971fad78fc83

Available diffs

No changes file available.

Binary packages built by this source

python3-monotonic: implementation of time.monotonic() - Python 3.x

 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 implementation:
 GetTickCount64 on Windows, mach_absolute_time on OS X, and clock_gettime(3)
 on Linux/BSD.
 .
 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.
 .
 This package contains the Python 3.x module.