mirror of
https://github.com/python/cpython.git
synced 2025-07-24 03:35:53 +00:00
ResourceWarning: Revert change on socket and scandir
io.FileIO has a safe implementation of destructor, but not socket nor scandir.
This commit is contained in:
parent
eedf13fe23
commit
f664dc5834
2 changed files with 4 additions and 3 deletions
|
@ -12111,8 +12111,8 @@ ScandirIterator_dealloc(ScandirIterator *iterator)
|
|||
*/
|
||||
++Py_REFCNT(iterator);
|
||||
PyErr_Fetch(&exc, &val, &tb);
|
||||
if (PyErr_ResourceWarning((PyObject *)iterator, 1,
|
||||
"unclosed scandir iterator %R", iterator)) {
|
||||
if (PyErr_WarnFormat(PyExc_ResourceWarning, 1,
|
||||
"unclosed scandir iterator %R", iterator)) {
|
||||
/* Spurious errors can appear at shutdown */
|
||||
if (PyErr_ExceptionMatches(PyExc_Warning))
|
||||
PyErr_WriteUnraisable((PyObject *) iterator);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue