Commit 442e4477 authored by Armin Rigo's avatar Armin Rigo

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).
parent 61ff85e6
...@@ -1858,7 +1858,7 @@ set_contains(PySetObject *so, PyObject *key) ...@@ -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;
......
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