# HG changeset patch # User Pierre-Yves David # Date 1470398170 -7200 # Node ID 3eaff87a0a89ce176b072d5a50ab9fa07eec32d2 # Parent e04ab2a5bf901e235f103c418ef6457ee527fc37 localrepo: deprecate 'repo.opener' (API) The "new" 'repo.vfs' attribute have been around for almost 5 years. I think we can deprecate the old form now ;-) diff -r e04ab2a5bf90 -r 3eaff87a0a89 mercurial/localrepo.py --- a/mercurial/localrepo.py Thu Mar 02 03:24:58 2017 +0100 +++ b/mercurial/localrepo.py Fri Aug 05 13:56:10 2016 +0200 @@ -267,7 +267,6 @@ self.nofsauditor = pathutil.pathauditor(self.root, self._checknested, realfs=False) self.vfs = scmutil.vfs(self.path) - self.opener = self.vfs self.baseui = baseui self.ui = baseui.copy() self.ui.copy = baseui.copy # prevent copying repo configuration @@ -384,6 +383,11 @@ self.ui.deprecwarn("use 'repo.wvfs' instead of 'repo.wopener'", '4.2') return self.wvfs + @property + def opener(self): + self.ui.deprecwarn("use 'repo.vfs' instead of 'repo.opener'", '4.2') + return self.vfs + def close(self): self._writecaches() diff -r e04ab2a5bf90 -r 3eaff87a0a89 mercurial/statichttprepo.py --- a/mercurial/statichttprepo.py Thu Mar 02 03:24:58 2017 +0100 +++ b/mercurial/statichttprepo.py Fri Aug 05 13:56:10 2016 +0200 @@ -123,7 +123,6 @@ vfsclass = build_opener(ui, authinfo) self.vfs = vfsclass(self.path) - self.opener = self.vfs self._phasedefaults = [] self.names = namespaces.namespaces()