Staging
v0.5.1
https://github.com/python/cpython
Revision aa5b196c180d4c1dbe5a8593e55066e630d38c09 authored by Benjamin Peterson on 03 January 2020, 03:10:06 UTC, committed by GitHub on 03 January 2020, 03:10:06 UTC
(cherry picked from commit 946b29ea0b3b386ed05e87e60b8617c9dc19cd53)

Co-authored-by: Benjamin Peterson <benjamin@python.org>
1 parent f82e59a
Raw File
Tip revision: aa5b196c180d4c1dbe5a8593e55066e630d38c09 authored by Benjamin Peterson on 03 January 2020, 03:10:06 UTC
[2.7] Bring Python into the next decade. (GH-17805)
Tip revision: aa5b196
timefuncs.h
/*  timefuncs.h
 */

/* Utility function related to timemodule.c. */

#ifndef TIMEFUNCS_H
#define TIMEFUNCS_H
#ifdef __cplusplus
extern "C" {
#endif


/* Cast double x to time_t, but raise ValueError if x is too large
 * to fit in a time_t.  ValueError is set on return iff the return
 * value is (time_t)-1 and PyErr_Occurred().
 */
PyAPI_FUNC(time_t) _PyTime_DoubleToTimet(double x);

/* Get the current time since the epoch in seconds */
PyAPI_FUNC(double) _PyTime_FloatTime(void);


#ifdef __cplusplus
}
#endif
#endif  /* TIMEFUNCS_H */
back to top