This repository has been archived by the owner on Apr 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,11 +8,11 @@ On Python 3.3 or newer, ``monotonic`` will be an alias of | |
[``time.monotonic``][0] from the standard library. On older versions, | ||
it will fall back to an equivalent implementation: | ||
|
||
OS | Implementation | ||
-------------|----------------------------------------- | ||
Linux, *BSD | [clock_gettime][1] | ||
Windows | [GetTickCount][2] or [GetTickCount64][3] | ||
OS X | [mach_absolute_time][3] | ||
OS | Implementation | ||
-----------------|----------------------------------------- | ||
Linux, BSD, AIX | [clock_gettime][1] | ||
Windows | [GetTickCount][2] or [GetTickCount64][3] | ||
OS X | [mach_absolute_time][3] | ||
|
||
If no suitable implementation exists for the current platform, | ||
attempting to import this module (or to import from it) will | ||
|
@@ -23,7 +23,7 @@ monotonic is available via the Python Cheese Shop (PyPI): | |
|
||
License | ||
------- | ||
Copyright 2014, 2015, 2016 Ori Livneh <[email protected]> | ||
Copyright 2014, 2015, 2016, 2017 Ori Livneh <[email protected]> | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,13 +10,13 @@ | |
``time.monotonic`` from the standard library. On older versions, | ||
it will fall back to an equivalent implementation: | ||
+-------------+----------------------------------------+ | ||
| Linux, BSD | ``clock_gettime(3)`` | | ||
+-------------+----------------------------------------+ | ||
| Windows | ``GetTickCount`` or ``GetTickCount64`` | | ||
+-------------+----------------------------------------+ | ||
| OS X | ``mach_absolute_time`` | | ||
+-------------+----------------------------------------+ | ||
+------------------+----------------------------------------+ | ||
| 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 | ||
|
@@ -31,7 +31,7 @@ | |
|
||
setup( | ||
name='monotonic', | ||
version='1.2', | ||
version='1.3', | ||
license='Apache', | ||
author='Ori Livneh', | ||
author_email='[email protected]', | ||
|