mirror of
https://github.com/python/cpython.git
synced 2025-10-05 06:31:48 +00:00
raised an error.
(cherry picked from commit bf623ae884
)
This commit is contained in:
parent
8e5b52a8da
commit
680fea4067
7 changed files with 95 additions and 31 deletions
|
@ -1550,20 +1550,26 @@ set_difference(PySetObject *so, PyObject *other)
|
|||
PyObject *key;
|
||||
Py_hash_t hash;
|
||||
setentry *entry;
|
||||
Py_ssize_t pos = 0;
|
||||
Py_ssize_t pos = 0, other_size;
|
||||
int rv;
|
||||
|
||||
if (PySet_GET_SIZE(so) == 0) {
|
||||
return set_copy(so);
|
||||
}
|
||||
|
||||
if (!PyAnySet_Check(other) && !PyDict_CheckExact(other)) {
|
||||
if (PyAnySet_Check(other)) {
|
||||
other_size = PySet_GET_SIZE(other);
|
||||
}
|
||||
else if (PyDict_CheckExact(other)) {
|
||||
other_size = PyDict_Size(other);
|
||||
}
|
||||
else {
|
||||
return set_copy_and_difference(so, other);
|
||||
}
|
||||
|
||||
/* If len(so) much more than len(other), it's more efficient to simply copy
|
||||
* so and then iterate other looking for common elements. */
|
||||
if ((PySet_GET_SIZE(so) >> 2) > PyObject_Size(other)) {
|
||||
if ((PySet_GET_SIZE(so) >> 2) > other_size) {
|
||||
return set_copy_and_difference(so, other);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue