diff --git a/mercurial/bundlerepo.py b/mercurial/bundlerepo.py --- a/mercurial/bundlerepo.py +++ b/mercurial/bundlerepo.py @@ -206,3 +206,6 @@ class bundlerepository(localrepo.localre else: return filelog.filelog(self.opener, f) + def close(self): + """Close assigned bundle file immediately.""" + self.bundlefile.close()