Silence a compilation warning
diff --git a/Python/Python-ast.c b/Python/Python-ast.c
index cb7bd25..085cf61 100644
--- a/Python/Python-ast.c
+++ b/Python/Python-ast.c
@@ -5948,7 +5948,7 @@
 {
     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;