##// END OF EJS Templates
match: remove unused match.__iter__ implementation (API)...
Martin von Zweigbergk -
r42373:7edff8dd default
parent child Browse files
Show More
@@ -305,9 +305,6 b' class basematcher(object):'
305
305
306 def __call__(self, fn):
306 def __call__(self, fn):
307 return self.matchfn(fn)
307 return self.matchfn(fn)
308 def __iter__(self):
309 for f in self._files:
310 yield f
311 # Callbacks related to how the matcher is used by dirstate.walk.
308 # Callbacks related to how the matcher is used by dirstate.walk.
312 # Subscribers to these events must monkeypatch the matcher object.
309 # Subscribers to these events must monkeypatch the matcher object.
313 def bad(self, f, msg):
310 def bad(self, f, msg):
General Comments 0
You need to be logged in to leave comments. Login now