A no-op change. It looks like this call was not meant to be a recursive

call, but just call the helper (which the recursive call ends up doing).
This commit is contained in:
Armin Rigo 2010-11-24 10:39:23 +00:00
parent 61ff85e609
commit 442e4477fe

View file

@ -1858,7 +1858,7 @@ set_contains(PySetObject *so, PyObject *key)
tmpkey = make_new_set(&PyFrozenSet_Type, key); tmpkey = make_new_set(&PyFrozenSet_Type, key);
if (tmpkey == NULL) if (tmpkey == NULL)
return -1; return -1;
rv = set_contains(so, tmpkey); rv = set_contains_key(so, tmpkey);
Py_DECREF(tmpkey); Py_DECREF(tmpkey);
} }
return rv; return rv;