mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
GH-101291: Rearrange the size bits in PyLongObject (GH-102464)
* Eliminate all remaining uses of Py_SIZE and Py_SET_SIZE on PyLongObject, adding asserts. * Change layout of size/sign bits in longobject to support future addition of immortal ints and tagged medium ints. * Add functions to hide some internals of long object, and for setting sign and digit count. * Replace uses of IS_MEDIUM_VALUE macro with _PyLong_IsCompact().
This commit is contained in:
parent
713df2c534
commit
7559f5fda9
25 changed files with 982 additions and 898 deletions
|
@ -33,7 +33,7 @@ validate_step(PyObject *step)
|
|||
return PyLong_FromLong(1);
|
||||
|
||||
step = PyNumber_Index(step);
|
||||
if (step && _PyLong_Sign(step) == 0) {
|
||||
if (step && _PyLong_IsZero((PyLongObject *)step)) {
|
||||
PyErr_SetString(PyExc_ValueError,
|
||||
"range() arg 3 must not be zero");
|
||||
Py_CLEAR(step);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue