Submitter | phabricator |
---|---|
Date | Nov. 6, 2019, 10:57 p.m. |
Message ID | <differential-rev-PHID-DREV-p54pcbwwwwockecfgj76-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/42819/ |
State | Superseded |
Headers | show |
Comments
martinvonz added a comment. I guess you meant s/NotImplementedError/abstractvfs/ in the commit message of this patch (and maybe on the parent patch as well) REPOSITORY rHG Mercurial CHANGES SINCE LAST ACTION https://phab.mercurial-scm.org/D7266/new/ REVISION DETAIL https://phab.mercurial-scm.org/D7266 To: durin42, #hg-reviewers, indygreg Cc: martinvonz, mercurial-devel
Patch
diff --git a/mercurial/vfs.py b/mercurial/vfs.py --- a/mercurial/vfs.py +++ b/mercurial/vfs.py @@ -60,6 +60,9 @@ def _auditpath(self, path, mode): raise NotImplementedError + def join(self, path, *insidef): + raise NotImplementedError + def tryread(self, path): '''gracefully return an empty string for missing files''' try: