##// END OF EJS Templates
dirstate: explain why appending instead of os.path.join() is safe
Benoit Boissinot -
r6973:8c136043 default
parent child Browse files
Show More
@@ -101,6 +101,7 b' class dirstate(object):'
101
101
102 def _join(self, f):
102 def _join(self, f):
103 # much faster than os.path.join()
103 # much faster than os.path.join()
104 # it's safe because f is always a relative path
104 return self._rootdir + f
105 return self._rootdir + f
105
106
106 def flagfunc(self, fallback):
107 def flagfunc(self, fallback):
General Comments 0
You need to be logged in to leave comments. Login now