mirror of
https://github.com/python/cpython.git
synced 2026-05-07 05:01:13 -04:00
d08c788822
Instead of be limited just by the size of addressable memory (2**63 bytes), Python integers are now also limited by the number of bits, so the number of bit now always fit in a 64-bit integer. Both limits are much larger than what might be available in practice, so it doesn't affect users. _PyLong_NumBits() and _PyLong_Frexp() are now always successful.
Miscellaneous source files for the main Python shared library