Skip to content

Commit 6e4e454

Browse files
csm10495Eclips4
andauthored
Update Objects/exceptions.c
Co-authored-by: Kirill Podoprigora <[email protected]>
1 parent efb0c36 commit 6e4e454

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/exceptions.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2324,7 +2324,7 @@ AttributeError_reduce(PyAttributeErrorObject *self, PyObject *Py_UNUSED(ignored)
23242324
return NULL;
23252325
}
23262326

2327-
PyObject* return_value = PyTuple_Pack(3, Py_TYPE(self), self->args, state);
2327+
PyObject *return_value = PyTuple_Pack(3, Py_TYPE(self), self->args, state);
23282328
Py_DECREF(state);
23292329
return return_value;
23302330
}

0 commit comments

Comments
 (0)