Staging
v0.5.1
https://github.com/python/cpython
Revision 1681b622515e2c174d59e79746579e71339adc04 authored by Fred Drake on 13 November 2004, 17:45:39 UTC, committed by Fred Drake on 13 November 2004, 17:45:39 UTC
so that this is harder to forget to do for development of new styles
1 parent bbc0d44
Raw File
Tip revision: 1681b622515e2c174d59e79746579e71339adc04 authored by Fred Drake on 13 November 2004, 17:45:39 UTC
add another way to specify an alternate name for the documentation set,
Tip revision: 1681b62
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