Submitter | phabricator |
---|---|
Date | Nov. 6, 2019, 10:57 p.m. |
Message ID | <differential-rev-PHID-DREV-64g246lr62clazshzwpc-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/42817/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/vfs.py b/mercurial/vfs.py --- a/mercurial/vfs.py +++ b/mercurial/vfs.py @@ -54,6 +54,9 @@ '''Prevent instantiation; don't call this from subclasses.''' raise NotImplementedError('attempted instantiating ' + str(type(self))) + def __call__(self, path, mode=b'rb', **kwargs): + raise NotImplementedError + def _auditpath(self, path, mode): raise NotImplementedError