commit | 418f81d9b65ca2c7942ff9c422ad01d5050a808f | [log] [tgz] |
---|---|---|
author | Mark Dickinson <dickinsm@gmail.com> | Thu Sep 24 20:04:23 2009 +0000 |
committer | Mark Dickinson <dickinsm@gmail.com> | Thu Sep 24 20:04:23 2009 +0000 |
tree | a2e1fabc0af6fad77c1142badf29227c0f9bdd43 | |
parent | 067b38eed41bc659ab3d3f9d780a824ed5d1b857 [diff] [blame] |
Issue #1766304: The range.__contains__ optimization should only be applied to ints, not to instances of subclasses of int.
diff --git a/Objects/rangeobject.c b/Objects/rangeobject.c index 213f3dd..beff030 100644 --- a/Objects/rangeobject.c +++ b/Objects/rangeobject.c
@@ -275,7 +275,7 @@ static int range_contains(rangeobject *r, PyObject *ob) { - if (PyLong_Check(ob)) { + if (PyLong_CheckExact(ob) || PyBool_Check(ob)) { int cmp1, cmp2, cmp3; PyObject *tmp1 = NULL; PyObject *tmp2 = NULL;