mirror of
https://github.com/Manuel83/craftbeerpi3
synced 2026-09-19 15:59:07 +02:00
python 3 migration
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
|
||||
monotonic
|
||||
~~~~~~~~~
|
||||
|
||||
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:
|
||||
|
||||
+------------------+----------------------------------------+
|
||||
| Linux, BSD, AIX | ``clock_gettime(3)`` |
|
||||
+------------------+----------------------------------------+
|
||||
| Windows | ``GetTickCount`` or ``GetTickCount64`` |
|
||||
+------------------+----------------------------------------+
|
||||
| OS X | ``mach_absolute_time`` |
|
||||
+------------------+----------------------------------------+
|
||||
|
||||
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.
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
pip
|
||||
@@ -0,0 +1,40 @@
|
||||
Metadata-Version: 2.0
|
||||
Name: monotonic
|
||||
Version: 1.5
|
||||
Summary: An implementation of time.monotonic() for Python 2 & < 3.3
|
||||
Home-page: https://github.com/atdt/monotonic
|
||||
Author: Ori Livneh
|
||||
Author-email: ori@wikimedia.org
|
||||
License: Apache
|
||||
Platform: UNKNOWN
|
||||
Classifier: Development Status :: 5 - Production/Stable
|
||||
Classifier: License :: OSI Approved :: Apache Software License
|
||||
Classifier: Programming Language :: Python :: 2
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
||||
|
||||
|
||||
monotonic
|
||||
~~~~~~~~~
|
||||
|
||||
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:
|
||||
|
||||
+------------------+----------------------------------------+
|
||||
| Linux, BSD, AIX | ``clock_gettime(3)`` |
|
||||
+------------------+----------------------------------------+
|
||||
| Windows | ``GetTickCount`` or ``GetTickCount64`` |
|
||||
+------------------+----------------------------------------+
|
||||
| OS X | ``mach_absolute_time`` |
|
||||
+------------------+----------------------------------------+
|
||||
|
||||
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.
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
monotonic.py,sha256=1wJOetpAPQUteaP7IxAelyChpkITsxZf-eV4V2bTHrA,7117
|
||||
monotonic-1.5.dist-info/DESCRIPTION.rst,sha256=_dl4si8EGcinaqqkC13imR-ApzXNasr3kUEuaUc4Mr4,944
|
||||
monotonic-1.5.dist-info/METADATA,sha256=iZPJDvOctw-1UpvUZjilLEItWpi6Cq43kkTfwXR_i74,1482
|
||||
monotonic-1.5.dist-info/RECORD,,
|
||||
monotonic-1.5.dist-info/WHEEL,sha256=kdsN-5OJAZIiHN-iO4Rhl82KyS0bDWf4uBwMbkNafr8,110
|
||||
monotonic-1.5.dist-info/metadata.json,sha256=vWUb6yi86uJsuFzn0XlUVThpof3g0KSlW0Zt4NEF5Ho,696
|
||||
monotonic-1.5.dist-info/top_level.txt,sha256=8CulQDznANi2Axsq_iy-BT4lyNTk1o5KTaLNTnFwspc,10
|
||||
monotonic-1.5.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
__pycache__/monotonic.cpython-36.pyc,,
|
||||
@@ -0,0 +1,6 @@
|
||||
Wheel-Version: 1.0
|
||||
Generator: bdist_wheel (0.30.0)
|
||||
Root-Is-Purelib: true
|
||||
Tag: py2-none-any
|
||||
Tag: py3-none-any
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
{"classifiers": ["Development Status :: 5 - Production/Stable", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: Software Development :: Libraries :: Python Modules"], "extensions": {"python.details": {"contacts": [{"email": "ori@wikimedia.org", "name": "Ori Livneh", "role": "author"}], "document_names": {"description": "DESCRIPTION.rst"}, "project_urls": {"Home": "https://github.com/atdt/monotonic"}}}, "generator": "bdist_wheel (0.30.0)", "license": "Apache", "metadata_version": "2.0", "name": "monotonic", "summary": "An implementation of time.monotonic() for Python 2 & < 3.3", "version": "1.5"}
|
||||
@@ -0,0 +1 @@
|
||||
monotonic
|
||||
Reference in New Issue
Block a user