python-monotonic 1.6-ok1 source package in openKylin

Changelog

python-monotonic (1.6-ok1) nile; urgency=medium

  * Build for openKylin.

 -- openKylinBot <email address hidden>  Mon, 06 May 2024 14:51:24 +0800

Upload details

Uploaded by:
openKylinBot
Sponsored by:
Cibot
Uploaded to:
Nile V2.0
Original maintainer:
Openkylin Developers
Architectures:
all
Section:
python
Urgency:
Medium Urgency

Publishing See full publishing history

Series Pocket Published Component Section
Nile V2.0 release main python
Nile V2.0 proposed main python

Builds

Nile V2.0: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-monotonic_1.6.orig.tar.xz 6.7 KiB 981e3cc5530484a327f6e25acd334935d1ce0bbed0ff78b76ac9fcab6baa352b
python-monotonic_1.6-ok1.debian.tar.xz 1.9 KiB 9f588d0e8bb7beea55aa7a11f0c5b23b24ce6a6613e054a4475e08c2f91d6d2b
python-monotonic_1.6-ok1.dsc 1.9 KiB b691dda0a3c01e66af902e7446820d55e4ce5a119761d2d27a6df5dadfd6f1d4

View changes file

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.