Submitter | phabricator |
---|---|
Date | Nov. 7, 2019, 8:31 a.m. |
Message ID | <8175055a963acbc771195dc4c11689e0@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/42864/ |
State | Not Applicable |
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