# HG changeset patch # User Yuya Nishihara # Date 1499438400 -32400 # Node ID a42369e04aeeff03360dc027a68b43d17f640538 # Parent 50b49bb0fff33aca0c7b3d423729d48eb1ba1892 vfs: rename auditvfs to proxyvfs Since we've removed mustaudit property, auditvfs has no auditing business. It's just a utility class for vfs wrappers. diff -r 50b49bb0fff3 -r a42369e04aee mercurial/store.py --- a/mercurial/store.py Fri Jul 07 23:19:31 2017 +0900 +++ b/mercurial/store.py Fri Jul 07 23:40:00 2017 +0900 @@ -475,9 +475,9 @@ self._load() return iter(self.entries) -class _fncachevfs(vfsmod.abstractvfs, vfsmod.auditvfs): +class _fncachevfs(vfsmod.abstractvfs, vfsmod.proxyvfs): def __init__(self, vfs, fnc, encode): - vfsmod.auditvfs.__init__(self, vfs) + vfsmod.proxyvfs.__init__(self, vfs) self.fncache = fnc self.encode = encode diff -r 50b49bb0fff3 -r a42369e04aee mercurial/vfs.py --- a/mercurial/vfs.py Fri Jul 07 23:19:31 2017 +0900 +++ b/mercurial/vfs.py Fri Jul 07 23:40:00 2017 +0900 @@ -441,7 +441,7 @@ opener = vfs -class auditvfs(object): +class proxyvfs(object): def __init__(self, vfs): self.vfs = vfs @@ -453,11 +453,11 @@ def options(self, value): self.vfs.options = value -class filtervfs(abstractvfs, auditvfs): +class filtervfs(abstractvfs, proxyvfs): '''Wrapper vfs for filtering filenames with a function.''' def __init__(self, vfs, filter): - auditvfs.__init__(self, vfs) + proxyvfs.__init__(self, vfs) self._filter = filter def __call__(self, path, *args, **kwargs): @@ -471,11 +471,11 @@ filteropener = filtervfs -class readonlyvfs(abstractvfs, auditvfs): +class readonlyvfs(abstractvfs, proxyvfs): '''Wrapper vfs preventing any writing.''' def __init__(self, vfs): - auditvfs.__init__(self, vfs) + proxyvfs.__init__(self, vfs) def __call__(self, path, mode='r', *args, **kw): if mode not in ('r', 'rb'):