Mercurial > hg
changeset 43468:8b0fa4de0064
vfs: add NotImplementedError version of join
Again, this helps out pytype.
Differential Revision: https://phab.mercurial-scm.org/D7266
author | Augie Fackler <augie@google.com> |
---|---|
date | Wed, 06 Nov 2019 15:19:23 -0500 |
parents | b16912f8c07c |
children | 5f2a8dabb0d8 |
files | mercurial/vfs.py |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/vfs.py Wed Nov 06 15:11:30 2019 -0500 +++ b/mercurial/vfs.py Wed Nov 06 15:19:23 2019 -0500 @@ -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: