D7266: vfs: add NotImplementedError version of join

durin42 (Augie Fackler) phabricator at mercurial-scm.org
Thu Nov 7 03:31:56 EST 2019


Closed by commit rHG8b0fa4de0064: vfs: add NotImplementedError version of join (authored by durin42).
This revision was automatically updated to reflect the committed changes.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D7266?vs=17636&id=17683

CHANGES SINCE LAST ACTION
  https://phab.mercurial-scm.org/D7266/new/

REVISION DETAIL
  https://phab.mercurial-scm.org/D7266

AFFECTED FILES
  mercurial/vfs.py

CHANGE DETAILS

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:



To: durin42, #hg-reviewers, indygreg
Cc: mercurial-devel


More information about the Mercurial-devel mailing list