(self)
| 402 | self.commits += new_commits |
| 403 | |
| 404 | def stat(self): |
| 405 | counts = defaultdict(lambda: defaultdict(int)) |
| 406 | for commit in self.commits: |
| 407 | counts[commit.category][commit.topic] += 1 |
| 408 | return counts |
| 409 | |
| 410 | |
| 411 | def create_new(path, base_version, new_version): |
no outgoing calls