Skip to content

Commit

Permalink
revert change in default build
Browse files Browse the repository at this point in the history
  • Loading branch information
dpdani committed May 22, 2024
1 parent 419929d commit ce49aea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Python/structmember.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ PyMember_GetOne(const char *obj_addr, PyMemberDef *l)
break;
case Py_T_OBJECT_EX:
#ifndef Py_GIL_DISABLED
v = FT_ATOMIC_LOAD_PTR(*addr);
v = *(PyObject **)addr;
if (v == NULL) {
PyObject *obj = (PyObject *)obj_addr;
PyTypeObject *tp = Py_TYPE(obj);
Expand Down

0 comments on commit ce49aea

Please sign in to comment.