commit | 11d88a178b077e42025da538b890db3151a47070 | [log] [tgz] |
---|---|---|
author | Zackery Spytz <zspytz@gmail.com> | Tue Dec 05 09:09:39 2023 -0800 |
committer | GitHub <noreply@github.com> | Tue Dec 05 19:09:39 2023 +0200 |
tree | 7856bbd4fb4743d616645612694573c9d1304789 | |
parent | de6bca956432cc852a4a41e2a2cee9cdacd19f35 [diff] |
bpo-35332: Handle os.close() errors in shutil.rmtree() (GH-23766) * Ignore os.close() errors when ignore_errors is True. * Pass os.close() errors to the error handler if specified. * os.close no longer retried after error. Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>