##// END OF EJS Templates
match: introduce explicitdir and traversedir...
Siddharth Agarwal -
r19136:e073ac98 default
parent child Browse files
Show More
@@ -121,6 +121,10 b' class match(object):'
121 pass
121 pass
122 def dir(self, f):
122 def dir(self, f):
123 pass
123 pass
124 def explicitdir(self, f):
125 self.dir(f)
126 def traversedir(self, f):
127 self.dir(f)
124 def missing(self, f):
128 def missing(self, f):
125 pass
129 pass
126 def exact(self, f):
130 def exact(self, f):
General Comments 0
You need to be logged in to leave comments. Login now