mirror of
https://github.com/python/cpython.git
synced 2025-10-01 04:42:10 +00:00
Revert r86726. Sorry about interfering with the rc.
This commit is contained in:
parent
442e4477fe
commit
39e32a7e81
1 changed files with 1 additions and 1 deletions
|
@ -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_key(so, tmpkey);
|
rv = set_contains(so, tmpkey);
|
||||||
Py_DECREF(tmpkey);
|
Py_DECREF(tmpkey);
|
||||||
}
|
}
|
||||||
return rv;
|
return rv;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue