diff --git a/Python/Python-ast.c b/Python/Python-ast.c index cb7bd254109..085cf61d4ff 100644 --- a/Python/Python-ast.c +++ b/Python/Python-ast.c @@ -5948,7 +5948,7 @@ mod_ty PyAST_obj2mod(PyObject* ast, PyArena* arena) { mod_ty res; init_types(); - if (!PyObject_IsInstance(ast, mod_type)) { + if (!PyObject_IsInstance(ast, (PyObject*)mod_type)) { PyErr_SetString(PyExc_TypeError, "expected either Module, Interactive " "or Expression node"); return NULL;