python-monotonic 1.5-3 source package in Ubuntu

Changelog

python-monotonic (1.5-3) unstable; urgency=medium

  [ Ondřej Nový ]
  * Updating standards version to 4.4.0 (no changes).
  * Enable autopkgtest-pkg-python testsuite
  * Bump debhelper to compat level 11.

 -- Thomas Goirand <email address hidden>  Tue, 16 Jul 2019 20:59:31 +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

Builds

Groovy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-monotonic_1.5-3.dsc 2.0 KiB 10af0d201fac71a6d69a4bce32ed9dc1da17bb08354107a05a275e2743b2581c
python-monotonic_1.5.orig.tar.xz 6.6 KiB bebd98281639d34715ca9e0e5afa13b8d7b5e0d42ec75d2b21a10d3a0e7149f0
python-monotonic_1.5-3.debian.tar.xz 2.3 KiB f4aa290fe9ffd16c733eb49871e3603a658a7f73f7b09c4f42fff7533f440984

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.