Mercurial > hg-stable
diff mercurial/vfs.py @ 33412:a42369e04aee
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.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Fri, 07 Jul 2017 23:40:00 +0900 |
parents | d1db7af81548 |
children | 456626e9c3d1 |
line wrap: on
line diff
--- 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'):