summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2007-02-07 22:24:07 (GMT)
committerRaymond Hettinger <python@rcn.com>2007-02-07 22:24:07 (GMT)
commit4da5bf644ab0aa836d29d076524c49cd9b6f3c03 (patch)
tree26a725f7a7edb5a25eb1ddca722607d691115510 /Objects
parent5a0217efeab4b6b2437a431e06d1c91f07548209 (diff)
downloadcpython-4da5bf644ab0aa836d29d076524c49cd9b6f3c03.zip
cpython-4da5bf644ab0aa836d29d076524c49cd9b6f3c03.tar.gz
cpython-4da5bf644ab0aa836d29d076524c49cd9b6f3c03.tar.bz2
Bug #1575169: operator.isSequenceType() now returns False for subclasses of dict.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/abstract.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c
index 7115c52..7462c58 100644
--- a/Objects/abstract.c
+++ b/Objects/abstract.c
@@ -1157,6 +1157,8 @@ PySequence_Check(PyObject *s)
{
if (s && PyInstance_Check(s))
return PyObject_HasAttrString(s, "__getitem__");
+ if (PyObject_IsInstance(s, &PyDict_Type))
+ return 0;
return s != NULL && s->ob_type->tp_as_sequence &&
s->ob_type->tp_as_sequence->sq_item != NULL;
}