comparison commitwatcher/store.py @ 21:be7090ee7738

wip
author Jeff Hammel <jhammel@mozilla.com>
date Sun, 29 Sep 2013 20:32:42 -0700
parents a8e21cfda5fe
children f82d43bcb24e
comparison
equal deleted inserted replaced
20:a8e21cfda5fe 21:be7090ee7738
35 def add(self, commit): 35 def add(self, commit):
36 raise NotImplementedError() 36 raise NotImplementedError()
37 37
38 def paths(self, *commits): 38 def paths(self, *commits):
39 """ 39 """
40 return touched by commits 40 return paths touched by commits
41 """ 41 """
42 42
43 paths = set() 43 paths = set()
44 for commit in commits: 44 for commit in commits:
45 for f in commit.files: 45 for f in commit.files:
46 46
47 raise NotImplementedError 47 raise NotImplementedError