We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdba86e commit 60d4281Copy full SHA for 60d4281
Include/internal/pycore_cell.h
@@ -53,7 +53,7 @@ _PyCell_GetStackRef(PyCellObject *cell)
53
{
54
PyObject *value;
55
#ifdef Py_GIL_DISABLED
56
- value = _Py_atomic_load_ptr(&cell->ob_ref);
+ value = _PyObject_CAST(_Py_atomic_load_ptr(&cell->ob_ref));
57
if (value == NULL) {
58
return PyStackRef_NULL;
59
}
0 commit comments