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 39d126d commit 9478ca6Copy full SHA for 9478ca6
Include/internal/pycore_cell.h
@@ -53,7 +53,7 @@ _PyCell_GetStackRef(PyCellObject *cell)
53
{
54
PyObject *value;
55
#ifdef Py_GIL_DISABLED
56
- value = (PyObject *)_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