commit | 473445c964210f825be776a609d8dcfeac3b0a4f | [log] [tgz] |
---|---|---|
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | Fri Mar 28 20:17:51 2008 +0000 |
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | Fri Mar 28 20:17:51 2008 +0000 |
tree | 014fce85734973f96f1ab71ae580984fff8eed9f | |
parent | a98be45f18156e33a1a6bad0480a8d2dbb857798 [diff] [blame] |
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;