From: Armin Rigo Date: Wed, 24 Nov 2010 13:17:48 +0000 (+0000) Subject: Revert r86726. Sorry about interfering with the rc. X-Git-Tag: v2.7.1~32 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=39e32a7e8164961862362d15820575c26b4248fe;p=python Revert r86726. Sorry about interfering with the rc. --- diff --git a/Objects/setobject.c b/Objects/setobject.c index 56f3087620..00cabe609d 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;