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

Commit 5c0322d

Browse files
committed
1.3 (add support for AIX)
1 parent 7ba5c45 commit 5c0322d

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ On Python 3.3 or newer, ``monotonic`` will be an alias of
88
[``time.monotonic``][0] from the standard library. On older versions,
99
it will fall back to an equivalent implementation:
1010

11-
OS | Implementation
12-
-------------|-----------------------------------------
13-
Linux, *BSD | [clock_gettime][1]
14-
Windows | [GetTickCount][2] or [GetTickCount64][3]
15-
OS X | [mach_absolute_time][3]
11+
OS | Implementation
12+
-----------------|-----------------------------------------
13+
Linux, BSD, AIX | [clock_gettime][1]
14+
Windows | [GetTickCount][2] or [GetTickCount64][3]
15+
OS X | [mach_absolute_time][3]
1616

1717
If no suitable implementation exists for the current platform,
1818
attempting to import this module (or to import from it) will
@@ -23,7 +23,7 @@ monotonic is available via the Python Cheese Shop (PyPI):
2323

2424
License
2525
-------
26-
Copyright 2014, 2015, 2016 Ori Livneh <[email protected]>
26+
Copyright 2014, 2015, 2016, 2017 Ori Livneh <[email protected]>
2727

2828
Licensed under the Apache License, Version 2.0 (the "License");
2929
you may not use this file except in compliance with the License.

setup.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
``time.monotonic`` from the standard library. On older versions,
1111
it will fall back to an equivalent implementation:
1212
13-
+-------------+----------------------------------------+
14-
| Linux, BSD | ``clock_gettime(3)`` |
15-
+-------------+----------------------------------------+
16-
| Windows | ``GetTickCount`` or ``GetTickCount64`` |
17-
+-------------+----------------------------------------+
18-
| OS X | ``mach_absolute_time`` |
19-
+-------------+----------------------------------------+
13+
+------------------+----------------------------------------+
14+
| Linux, BSD, AIX | ``clock_gettime(3)`` |
15+
+------------------+----------------------------------------+
16+
| Windows | ``GetTickCount`` or ``GetTickCount64`` |
17+
+------------------+----------------------------------------+
18+
| OS X | ``mach_absolute_time`` |
19+
+------------------+----------------------------------------+
2020
2121
If no suitable implementation exists for the current platform,
2222
attempting to import this module (or to import from it) will
@@ -31,7 +31,7 @@
3131

3232
setup(
3333
name='monotonic',
34-
version='1.2',
34+
version='1.3',
3535
license='Apache',
3636
author='Ori Livneh',
3737
author_email='[email protected]',

0 commit comments

Comments
 (0)