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 ;-)
--- 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()
--- 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()