We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
RemoteUnwinderObject
1 parent 53d49aa commit 203c517Copy full SHA for 203c517
1 file changed
Modules/_remote_debugging_module.c
@@ -214,8 +214,6 @@ typedef struct {
214
#endif
215
} RemoteUnwinderObject;
216
217
-#define RemoteUnwinder_CAST(op) ((RemoteUnwinderObject *)(op))
218
-
219
typedef struct
220
{
221
int lineno;
@@ -2915,9 +2913,8 @@ static PyMethodDef RemoteUnwinder_methods[] = {
2915
2913
};
2916
2914
2917
static void
2918
-RemoteUnwinder_dealloc(PyObject *op)
+RemoteUnwinder_dealloc(RemoteUnwinderObject *self)
2919
2920
- RemoteUnwinderObject *self = RemoteUnwinder_CAST(op);
2921
PyTypeObject *tp = Py_TYPE(self);
2922
if (self->code_object_cache) {
2923
_Py_hashtable_destroy(self->code_object_cache);
0 commit comments