mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
Avoid unnecessary recursive function calls (#closes #10519)
This commit is contained in:
@@ -1852,7 +1852,7 @@ set_contains(PySetObject *so, PyObject *key)
|
||||
tmpkey = make_new_set(&PyFrozenSet_Type, key);
|
||||
if (tmpkey == NULL)
|
||||
return -1;
|
||||
rv = set_contains(so, tmpkey);
|
||||
rv = set_contains_key(so, tmpkey);
|
||||
Py_DECREF(tmpkey);
|
||||
}
|
||||
return rv;
|
||||
@@ -1917,7 +1917,7 @@ set_discard(PySetObject *so, PyObject *key)
|
||||
tmpkey = make_new_set(&PyFrozenSet_Type, key);
|
||||
if (tmpkey == NULL)
|
||||
return NULL;
|
||||
result = set_discard(so, tmpkey);
|
||||
result = set_discard_key(so, tmpkey);
|
||||
Py_DECREF(tmpkey);
|
||||
return result;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user