mirror of
https://github.com/python/cpython.git
synced 2025-12-08 06:10:17 +00:00
Merge fdf2efcaf6 into 3db7bf2d18
This commit is contained in:
commit
57ac5e032e
1 changed files with 2 additions and 2 deletions
|
|
@ -2005,9 +2005,9 @@ set_symmetric_difference_update_impl(PySetObject *so, PyObject *other)
|
|||
return NULL;
|
||||
}
|
||||
|
||||
Py_BEGIN_CRITICAL_SECTION(so);
|
||||
Py_BEGIN_CRITICAL_SECTION2(so, otherset);
|
||||
rv = set_symmetric_difference_update_set(so, otherset);
|
||||
Py_END_CRITICAL_SECTION();
|
||||
Py_END_CRITICAL_SECTION2();
|
||||
|
||||
Py_DECREF(otherset);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue