Skip to content

Commit

Permalink
Update Objects/exceptions.c
Browse files Browse the repository at this point in the history
Co-authored-by: Kirill Podoprigora <kirill.bast9@mail.ru>
  • Loading branch information
csm10495 and Eclips4 authored May 13, 2023
1 parent efb0c36 commit 6e4e454
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Objects/exceptions.c
Original file line number Diff line number Diff line change
Expand Up @@ -2324,7 +2324,7 @@ AttributeError_reduce(PyAttributeErrorObject *self, PyObject *Py_UNUSED(ignored)
return NULL;
}

PyObject* return_value = PyTuple_Pack(3, Py_TYPE(self), self->args, state);
PyObject *return_value = PyTuple_Pack(3, Py_TYPE(self), self->args, state);
Py_DECREF(state);
return return_value;
}
Expand Down

0 comments on commit 6e4e454

Please sign in to comment.