##// 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 102 def _join(self, f):
103 103 # much faster than os.path.join()
104 # it's safe because f is always a relative path
104 105 return self._rootdir + f
105 106
106 107 def flagfunc(self, fallback):
General Comments 0
You need to be logged in to leave comments. Login now