Commit 3994f786 authored by Raymond Hettinger's avatar Raymond Hettinger

Silence compiler warning

parent 0aa3ea8a
...@@ -1157,7 +1157,7 @@ PySequence_Check(PyObject *s) ...@@ -1157,7 +1157,7 @@ PySequence_Check(PyObject *s)
{ {
if (s && PyInstance_Check(s)) if (s && PyInstance_Check(s))
return PyObject_HasAttrString(s, "__getitem__"); return PyObject_HasAttrString(s, "__getitem__");
if (PyObject_IsInstance(s, &PyDict_Type)) if (PyObject_IsInstance(s, (PyObject *)&PyDict_Type))
return 0; return 0;
return s != NULL && s->ob_type->tp_as_sequence && return s != NULL && s->ob_type->tp_as_sequence &&
s->ob_type->tp_as_sequence->sq_item != NULL; s->ob_type->tp_as_sequence->sq_item != NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment