This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients Petter S, paul.moore, steve.dower, tim.golden, vstinner, zach.ware
Date 2018-06-26.08:08:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1530000487.0.0.56676864532.issue33965@psf.upfronthosting.co.za>
In-reply-to
Content
Petter S:

* What is your Windows version?
* Which operating system are you running on WSL? Name and version?
* In WSL: can you copy/paste the output of "uname -a"? What is your compiler version? Are you compiling in 32-bit or 64-bit mode?


Maybe the exception came from:

static int
pymonotonic(_PyTime_t *tp, _Py_clock_info_t *info, int raise)
{
#if defined(MS_WINDOWS)
    ...
    if (_PyTime_check_mul_overflow(t, MS_TO_NS)) {
        if (raise) {
            _PyTime_overflow();
            return -1;
        }
        /* Hello, time traveler! */
        Py_UNREACHABLE();
    }
    ...
}
History
Date User Action Args
2018-06-26 08:08:07vstinnersetrecipients: + vstinner, paul.moore, tim.golden, zach.ware, steve.dower, Petter S
2018-06-26 08:08:07vstinnersetmessageid: <1530000487.0.0.56676864532.issue33965@psf.upfronthosting.co.za>
2018-06-26 08:08:06vstinnerlinkissue33965 messages
2018-06-26 08:08:06vstinnercreate