Staging
v0.5.1
https://github.com/python/cpython
Revision 945a251e4ab8b4ebbb77604a64fa9b53b725ec6c authored by Tim Peters on 15 September 2013, 20:37:25 UTC, committed by Tim Peters on 15 September 2013, 20:37:25 UTC
Changeset c39f42f46a05 left a dangling head on 3.1.
2 parent s bc75046 + c17a8df
Raw File
Tip revision: 945a251e4ab8b4ebbb77604a64fa9b53b725ec6c authored by Tim Peters on 15 September 2013, 20:37:25 UTC
Null merge of 3.1 into 3.2
Tip revision: 945a251
_time.c
#include "Python.h"
#include "_time.h"

/* Exposed in timefuncs.h. */
time_t
_PyTime_DoubleToTimet(double x)
{
    time_t result;
    double diff;

    result = (time_t)x;
    /* How much info did we lose?  time_t may be an integral or
     * floating type, and we don't know which.  If it's integral,
     * we don't know whether C truncates, rounds, returns the floor,
     * etc.  If we lost a second or more, the C rounding is
     * unreasonable, or the input just doesn't fit in a time_t;
     * call it an error regardless.  Note that the original cast to
     * time_t can cause a C error too, but nothing we can do to
     * work around that.
     */
    diff = x - (double)result;
    if (diff <= -1.0 || diff >= 1.0) {
        PyErr_SetString(PyExc_ValueError,
                        "timestamp out of range for platform time_t");
        result = (time_t)-1;
    }
    return result;
}
back to top