mirror of
https://github.com/python/cpython.git
synced 2026-05-21 03:44:14 -04:00
d3e323215c
(the latter renamed to _PyLong_Frexp) now use the same core code. The exponent produced by _PyLong_Frexp now has type Py_ssize_t instead of the previously used int, and no longer needs scaling by PyLong_SHIFT. This frees the math module from having to know anything about the PyLong implementation. This closes issue #5576.