• Victor Stinner's avatar
    bpo-27645, sqlite: Fix integer overflow on sleep (#6594) · ca405017
    Victor Stinner yazdı
    Use the _PyTime_t type and round away from zero (ROUND_UP,
    _PyTime_ROUND_TIMEOUT) the sleep duration, when converting a Python
    object to seconds and then to milliseconds. Raise an OverflowError in
    case of overflow.
    
    Previously the (int)double conversion rounded towards zero
    (ROUND_DOWN).
    ca405017
connection.c 54.5 KB