We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cecaba commit ae6229bCopy full SHA for ae6229b
Objects/boolobject.c
@@ -155,7 +155,7 @@ bool_dealloc(PyObject* Py_UNUSED(ignore))
155
PyTypeObject PyBool_Type = {
156
PyVarObject_HEAD_INIT(&PyType_Type, 0)
157
"bool",
158
- offsetof(struct _longobject, ob_digit), /* tp_basicsize */
+ offsetof(struct _longobject, long_value.ob_digit), /* tp_basicsize */
159
sizeof(digit), /* tp_itemsize */
160
bool_dealloc, /* tp_dealloc */
161
0, /* tp_vectorcall_offset */
0 commit comments