##// 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 60 def _auditpath(self, path, mode):
61 61 raise NotImplementedError
62 62
63 def join(self, path, *insidef):
64 raise NotImplementedError
65
63 66 def tryread(self, path):
64 67 '''gracefully return an empty string for missing files'''
65 68 try:
General Comments 0
You need to be logged in to leave comments. Login now