python-monotonic 0.6-0ubuntu1 source package in Ubuntu

Changelog

python-monotonic (0.6-0ubuntu1) xenial; urgency=medium

  * New upstream release.

 -- Corey Bryant <email address hidden>  Thu, 25 Feb 2016 14:26:18 -0500

Upload details

Uploaded by:
Corey Bryant
Uploaded to:
Xenial
Original maintainer:
Ubuntu Developers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Xenial: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-monotonic_0.6.orig.tar.xz 6.4 KiB 8dceecefe6353b72f6f9805c4aaf89294fa1101541e11db12a8f99e82b7e2326
python-monotonic_0.6-0ubuntu1.debian.tar.xz 2.4 KiB 2b77a90a973228f6258285bc023383ccf0d2a19473bc42a9ca041077588d7d7b
python-monotonic_0.6-0ubuntu1.dsc 2.2 KiB fb5938ad17af83553f96b81ff9f5e3b209bb7f91c261f72879825946b813bb19

View changes file

Binary packages built by this source

python-monotonic: implementation of time.monotonic() - Python 2.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 2.x module.

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.