##// 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 121 pass
122 122 def dir(self, f):
123 123 pass
124 def explicitdir(self, f):
125 self.dir(f)
126 def traversedir(self, f):
127 self.dir(f)
124 128 def missing(self, f):
125 129 pass
126 130 def exact(self, f):
General Comments 0
You need to be logged in to leave comments. Login now