Silence compiler warning

This commit is contained in:
Raymond Hettinger 2007-02-07 23:48:15 +00:00
parent 127ef44c7b
commit bbe92887ce
1 changed files with 1 additions and 1 deletions

View File

@ -1157,7 +1157,7 @@ PySequence_Check(PyObject *s)
{
if (s && PyInstance_Check(s))
return PyObject_HasAttrString(s, "__getitem__");
if (PyObject_IsInstance(s, &PyDict_Type))
if (PyObject_IsInstance(s, (PyObject *)&PyDict_Type))
return 0;
return s != NULL && s->ob_type->tp_as_sequence &&
s->ob_type->tp_as_sequence->sq_item != NULL;