diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-11-02 11:19:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-02 11:19:19 (GMT) |
commit | a64ce973a3ad90e4f4a93c402e946c132f647a63 (patch) | |
tree | 89e9ad3e6009d34d4891635b01c59acbaf76bc1d /Misc | |
parent | e8b19656396381407ad91473af5da8b0d4346e88 (diff) | |
download | cpython-a64ce973a3ad90e4f4a93c402e946c132f647a63.zip cpython-a64ce973a3ad90e4f4a93c402e946c132f647a63.tar.gz cpython-a64ce973a3ad90e4f4a93c402e946c132f647a63.tar.bz2 |
bpo-31917: Add 3 new clock identifiers (#4207)
Add new clock identfiers:
* time.CLOCK_BOOTTIME
* time.CLOCK_PROF
* time.CLOCK_UPTIME
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-11-01-03-28-24.bpo-31917.DYQL0g.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-11-01-03-28-24.bpo-31917.DYQL0g.rst b/Misc/NEWS.d/next/Library/2017-11-01-03-28-24.bpo-31917.DYQL0g.rst new file mode 100644 index 0000000..dbfe92a --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-11-01-03-28-24.bpo-31917.DYQL0g.rst @@ -0,0 +1,2 @@ +Add 3 new clock identifiers: :data:`time.CLOCK_BOOTTIME`, +:data:`time.CLOCK_PROF` and :data:`time.CLOCK_UPTIME`. |