comparison commitwatcher/store.py @ 23:e65090645a18

commitwatcher/store.py
author Jeff Hammel <jhammel@mozilla.com>
date Wed, 02 Oct 2013 12:37:09 -0700
parents f82d43bcb24e
children 60a67934c64e
comparison
equal deleted inserted replaced
22:f82d43bcb24e 23:e65090645a18
42 """ 42 """
43 43
44 paths = set() 44 paths = set()
45 for commit in commits: 45 for commit in commits:
46 for f in commit.files: 46 for f in commit.files:
47 47 for path in self.ancestry(f):
48 self.path_to_commit.set_default(path, []).append(commit)
49 # TODO: worry about commit order
48 raise NotImplementedError 50 raise NotImplementedError