Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms.

Backport of r70459.
This commit is contained in:
Mark Dickinson 2009-03-20 15:51:55 +00:00
parent c8e81ef508
commit efc82f7e8e
17 changed files with 859 additions and 64 deletions

View file

@ -182,6 +182,9 @@ Py_InitializeEx(int install_sigs)
if (!_PyInt_Init())
Py_FatalError("Py_Initialize: can't init ints");
if (!_PyLong_Init())
Py_FatalError("Py_Initialize: can't init longs");
if (!PyByteArray_Init())
Py_FatalError("Py_Initialize: can't init bytearray");