--- a/mercurial/patch.py Fri Jan 15 13:14:45 2016 -0800
+++ b/mercurial/patch.py Fri Jan 15 13:14:50 2016 -0800
@@ -2099,8 +2099,7 @@
def changedfiles(ui, repo, patchpath, strip=1):
backend = fsbackend(ui, repo.root)
- fp = open(patchpath, 'rb')
- try:
+ with open(patchpath, 'rb') as fp:
changed = set()
for state, values in iterhunks(fp):
if state == 'file':
@@ -2118,8 +2117,6 @@
elif state not in ('hunk', 'git'):
raise error.Abort(_('unsupported parser state: %s') % state)
return changed
- finally:
- fp.close()
class GitDiffRequired(Exception):
pass