1.3 (add support for AIX)

This commit is contained in:
Ori Livneh 2017-03-14 11:46:32 -04:00
parent 7ba5c45f0f
commit 5c0322dc55
2 changed files with 14 additions and 14 deletions

View File

@ -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 <ori@wikimedia.org>
Copyright 2014, 2015, 2016, 2017 Ori Livneh <ori@wikimedia.org>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

View File

@ -10,13 +10,13 @@ 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 | ``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 @@ except ImportError:
setup(
name='monotonic',
version='1.2',
version='1.3',
license='Apache',
author='Ori Livneh',
author_email='ori@wikimedia.org',