Promote _delete member of TemporaryDirectory to delete · Issue #128397 · python/cpython · GitHub As suggested here we should make _delete public so that it can be used like this
with TemporaryDirectory() as temp_dir:
try:
thing_that_may_raise()
except Exception:
temp_dir.delete = False
raise