29.12.20 22:58, Marco Sulla пише:
> What about a parameter, false by default, that suppresses the
> FileNotFoundError exception if true for os.remove()? Something similar
> to exist_ok for os.makedirs().
You have two options (and it's too much in my opinion):
try:
os.remove(filename)
except FileNotFoundError:
pass
with contextlib.suppress(FileNotFoundError):
os.remove(filename)
_______________________________________________
Python-ideas mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-ideas.python.org/
Message archived at
https://mail.python.org/archives/list/[email protected]/message/TFNKPSBCEWTT4IXOQRNT4TFDI66TAHKH/
Code of Conduct: http://python.org/psf/codeofconduct/