Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update Objects/exceptions.c
Co-authored-by: Kirill Podoprigora <[email protected]>
  • Loading branch information
csm10495 and Eclips4 authored May 13, 2023
commit 6e4e454643b97a306b5062e67a2d769a028150bd
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