Staging
v0.5.1
https://github.com/python/cpython
Revision 24329ba1762688f78ff589d0243683c4afafe096 authored by Martin v. Löwis on 10 September 2008, 13:38:12 UTC, committed by Martin v. Löwis on 10 September 2008, 13:38:12 UTC
Reviewed by Fredrik Lundh and Marc-Andre Lemburg.
1 parent 9ba7a30
Raw File
Tip revision: 24329ba1762688f78ff589d0243683c4afafe096 authored by Martin v. Löwis on 10 September 2008, 13:38:12 UTC
Issue #3811: The Unicode database was updated to 5.1.
Tip revision: 24329ba
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);


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