commit | 8e76c456226438f2e4931ce7baf05ac8faae34a1 | [log] [tgz] |
---|---|---|
author | Sergey Fedoseev <fedoseev.sergey@gmail.com> | Fri Aug 23 20:39:09 2019 +0500 |
committer | Victor Stinner <vstinner@redhat.com> | Fri Aug 23 16:39:09 2019 +0100 |
tree | 4cb64f5f12eef44f6f9b4f2960fe8239cbd025d9 | |
parent | b5d3ceea48c181b3e2c6c67424317afed606bd39 [diff] |
Fix _PyTime_MIN/MAX values (GH-15384) _PyTime_t type is defined as int64_t, and so min/max are INT64_MIN/INT64_MAX, not PY_LLONG_MIN/PY_LLONG_MAX.