summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2010-11-24 13:17:48 (GMT)
committerArmin Rigo <arigo@tunes.org>2010-11-24 13:17:48 (GMT)
commit39e32a7e8164961862362d15820575c26b4248fe (patch)
treea3c841342799c35aa730bb2129337771bfd79a9f /Objects
parent442e4477fee2d8ad235aa75cb8aeb1c6dafc2764 (diff)
downloadcpython-39e32a7e8164961862362d15820575c26b4248fe.zip
cpython-39e32a7e8164961862362d15820575c26b4248fe.tar.gz
cpython-39e32a7e8164961862362d15820575c26b4248fe.tar.bz2
Revert r86726. Sorry about interfering with the rc.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/setobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/setobject.c b/Objects/setobject.c
index 56f3087..00cabe6 100644
--- a/Objects/setobject.c
+++ b/Objects/setobject.c
@@ -1858,7 +1858,7 @@ set_contains(PySetObject *so, PyObject *key)
tmpkey = make_new_set(&PyFrozenSet_Type, key);
if (tmpkey == NULL)
return -1;
- rv = set_contains_key(so, tmpkey);
+ rv = set_contains(so, tmpkey);
Py_DECREF(tmpkey);
}
return rv;