PKG-INFO 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. Metadata-Version: 1.1
  2. Name: monotonic
  3. Version: 1.5
  4. Summary: An implementation of time.monotonic() for Python 2 & < 3.3
  5. Home-page: https://github.com/atdt/monotonic
  6. Author: Ori Livneh
  7. Author-email: ori@wikimedia.org
  8. License: Apache
  9. Description:
  10. monotonic
  11. ~~~~~~~~~
  12. This module provides a ``monotonic()`` function which returns the
  13. value (in fractional seconds) of a clock which never goes backwards.
  14. On Python 3.3 or newer, ``monotonic`` will be an alias of
  15. ``time.monotonic`` from the standard library. On older versions,
  16. it will fall back to an equivalent implementation:
  17. +------------------+----------------------------------------+
  18. | Linux, BSD, AIX | ``clock_gettime(3)`` |
  19. +------------------+----------------------------------------+
  20. | Windows | ``GetTickCount`` or ``GetTickCount64`` |
  21. +------------------+----------------------------------------+
  22. | OS X | ``mach_absolute_time`` |
  23. +------------------+----------------------------------------+
  24. If no suitable implementation exists for the current platform,
  25. attempting to import this module (or to import from it) will
  26. cause a ``RuntimeError`` exception to be raised.
  27. Platform: UNKNOWN
  28. Classifier: Development Status :: 5 - Production/Stable
  29. Classifier: License :: OSI Approved :: Apache Software License
  30. Classifier: Programming Language :: Python :: 2
  31. Classifier: Programming Language :: Python :: 3
  32. Classifier: Topic :: Software Development :: Libraries :: Python Modules