summaryrefslogtreecommitdiffstats
path: root/Include/Python.h
diff options
context:
space:
mode:
authorPetr Viktorin <encukou@gmail.com>2024-02-12 17:13:10 (GMT)
committerGitHub <noreply@github.com>2024-02-12 17:13:10 (GMT)
commit879f4546bfbc9c47ef228e7c3d2f126f3d8d64bf (patch)
tree967b09783ee2a988eb605f9c905eedb12b691732 /Include/Python.h
parentc39272e143b346bd6a3c04ca4fbf299163888277 (diff)
downloadcpython-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.h1
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"