Mercurial > hg
changeset 31540:6d5b77abf306
util: add tryunlink function
Throughout mercurial cdoe, there is a common pattern of attempting to remove
a file and ignoring ENOENT errors. Let's move this into a common function to
allow for cleaner code.
author | Ryan McElroy <rmcelroy@fb.com> |
---|---|
date | Tue, 21 Mar 2017 06:50:28 -0700 |
parents | 52361c4f4dac |
children | bd9daafbf87c |
files | mercurial/util.py |
diffstat | 1 files changed, 8 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/util.py Tue Mar 21 06:50:28 2017 -0700 +++ b/mercurial/util.py Tue Mar 21 06:50:28 2017 -0700 @@ -1617,6 +1617,14 @@ except OSError: pass +def tryunlink(f): + """Attempt to remove a file, ignoring ENOENT errors.""" + try: + unlink(f) + except OSError as e: + if e.errno != errno.ENOENT: + raise + def makedirs(name, mode=None, notindexed=False): """recursive directory creation with parent mode inheritance