##// END OF EJS Templates
context: introduce the nullsub() method...
Matt Harbison -
r25417:95c27135 default
parent child Browse files
Show More
@@ -251,6 +251,9 b' class basectx(object):'
251 def sub(self, path):
251 def sub(self, path):
252 return subrepo.subrepo(self, path)
252 return subrepo.subrepo(self, path)
253
253
254 def nullsub(self, path, pctx):
255 return subrepo.nullsubrepo(self, path, pctx)
256
254 def match(self, pats=[], include=None, exclude=None, default='glob',
257 def match(self, pats=[], include=None, exclude=None, default='glob',
255 listsubrepos=False):
258 listsubrepos=False):
256 r = self._repo
259 r = self._repo
General Comments 0
You need to be logged in to leave comments. Login now