summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-03-28 20:17:51 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-03-28 20:17:51 (GMT)
commit473445c964210f825be776a609d8dcfeac3b0a4f (patch)
tree014fce85734973f96f1ab71ae580984fff8eed9f /Python
parenta98be45f18156e33a1a6bad0480a8d2dbb857798 (diff)
downloadcpython-473445c964210f825be776a609d8dcfeac3b0a4f.zip
cpython-473445c964210f825be776a609d8dcfeac3b0a4f.tar.gz
cpython-473445c964210f825be776a609d8dcfeac3b0a4f.tar.bz2
Silence a compilation warning
Diffstat (limited to 'Python')
-rw-r--r--Python/Python-ast.c2
1 files changed, 1 insertions, 1 deletions
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 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;