Commit d5237eb2 authored by Armin Rigo's avatar Armin Rigo

Revert r86726. Sorry about interfering with the rc.

parent 7b8485d1
......@@ -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;
......
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