diff options
author | Petr Viktorin <encukou@gmail.com> | 2024-02-12 17:13:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-12 17:13:10 (GMT) |
commit | 879f4546bfbc9c47ef228e7c3d2f126f3d8d64bf (patch) | |
tree | 967b09783ee2a988eb605f9c905eedb12b691732 /Include/Python.h | |
parent | c39272e143b346bd6a3c04ca4fbf299163888277 (diff) | |
download | cpython-879f4546bfbc9c47ef228e7c3d2f126f3d8d64bf.zip cpython-879f4546bfbc9c47ef228e7c3d2f126f3d8d64bf.tar.gz cpython-879f4546bfbc9c47ef228e7c3d2f126f3d8d64bf.tar.bz2 |
gh-110850: Add PyTime_t C API (GH-115215)
* gh-110850: Add PyTime_t C API
Add PyTime_t API:
* PyTime_t type.
* PyTime_MIN and PyTime_MAX constants.
* PyTime_AsSecondsDouble(), PyTime_Monotonic(),
PyTime_PerfCounter() and PyTime_GetSystemClock() functions.
Co-authored-by: Victor Stinner <vstinner@python.org>
Diffstat (limited to 'Include/Python.h')
-rw-r--r-- | Include/Python.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/Python.h b/Include/Python.h index 196751c..01fc451 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -97,6 +97,7 @@ #include "weakrefobject.h" #include "structseq.h" #include "cpython/picklebufobject.h" +#include "cpython/pytime.h" #include "codecs.h" #include "pyerrors.h" #include "pythread.h" |