##// END OF EJS Templates
vfs: add NotImplementedError version of join...
Augie Fackler -
r43769:8b0fa4de default
parent child Browse files
Show More
@@ -60,6 +60,9 b' class abstractvfs(object):'
60 def _auditpath(self, path, mode):
60 def _auditpath(self, path, mode):
61 raise NotImplementedError
61 raise NotImplementedError
62
62
63 def join(self, path, *insidef):
64 raise NotImplementedError
65
63 def tryread(self, path):
66 def tryread(self, path):
64 '''gracefully return an empty string for missing files'''
67 '''gracefully return an empty string for missing files'''
65 try:
68 try:
General Comments 0
You need to be logged in to leave comments. Login now