Skip to content
This repository has been archived by the owner on Apr 10, 2021. It is now read-only.

Commit

Permalink
1.3 (add support for AIX)
Browse files Browse the repository at this point in the history
  • Loading branch information
atdt committed Mar 14, 2017
1 parent 7ba5c45 commit 5c0322d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Expand Down
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -31,7 +31,7 @@

setup(
name='monotonic',
version='1.2',
version='1.3',
license='Apache',
author='Ori Livneh',
author_email='[email protected]',
Expand Down

0 comments on commit 5c0322d

Please sign in to comment.