diff options
author | Raymond Hettinger <python@rcn.com> | 2009-01-09 03:58:09 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-01-09 03:58:09 (GMT) |
commit | 3563153793623f693b8cd5697cd8a2ae6094d240 (patch) | |
tree | b29d9a22814ee220f28ddbc9a21ed895ae37bfbc /Include | |
parent | 1467ac8e5430b9f3a193a70b6dcd77d56a2e56f1 (diff) | |
download | cpython-3563153793623f693b8cd5697cd8a2ae6094d240.zip cpython-3563153793623f693b8cd5697cd8a2ae6094d240.tar.gz cpython-3563153793623f693b8cd5697cd8a2ae6094d240.tar.bz2 |
Reduce the size of the _PyLong_DigitValue table.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/longobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/longobject.h b/Include/longobject.h index 73ca951..7adf9c7 100644 --- a/Include/longobject.h +++ b/Include/longobject.h @@ -41,7 +41,7 @@ PyAPI_FUNC(unsigned long) PyLong_AsUnsignedLongMask(PyObject *); #endif /* For use by intobject.c only */ -PyAPI_DATA(int) _PyLong_DigitValue[256]; +PyAPI_DATA(unsigned char) _PyLong_DigitValue[256]; /* _PyLong_AsScaledDouble returns a double x and an exponent e such that the true value is approximately equal to x * 2**(SHIFT*e). e is >= 0. |