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 Modules/_ctypes/_ctypes.c
  • Loading branch information
erlend-aasland authored May 14, 2023
commit 019234eb26a8382f0d4ce1b57ca6b517fcdb7538
3 changes: 2 additions & 1 deletion Modules/_ctypes/_ctypes.c
Original file line number Diff line number Diff line change
Expand Up @@ -5477,7 +5477,8 @@ comerror_init(PyObject *self, PyObject *args, PyObject *kwds)
}

static int
comerror_clear(PyObject *self) {
comerror_clear(PyObject *self)
{
return ((PyTypeObject *)PyExc_BaseException)->tp_clear(self);
Comment thread
Eclips4 marked this conversation as resolved.
}

Expand Down