Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Include/cpython/pytime.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ PyAPI_FUNC(int) PyTime_Monotonic(PyTime_t *result);
PyAPI_FUNC(int) PyTime_PerfCounter(PyTime_t *result);
PyAPI_FUNC(int) PyTime_Time(PyTime_t *result);

// Expose internal API until we figure out what to do about it,
// see https://github.com/capi-workgroup/decisions/issues/15
// Do not use; like any names with a leading underscore, these may go away
// at any time.
PyAPI_FUNC(PyTime_t) _PyTime_TimeUnchecked(void);
PyAPI_FUNC(PyTime_t) _PyTime_MonotonicUnchecked(void);
PyAPI_FUNC(PyTime_t) _PyTime_PerfCounterUnchecked(void);

#ifdef __cplusplus
}
#endif
Expand Down