(self, alpha)
| 238 | return commit_share |
| 239 | |
| 240 | def compute_developer_share(self, alpha): |
| 241 | dev_share = {} |
| 242 | commit_share = self.compute_commit_share(alpha) |
| 243 | |
| 244 | for sha in commit_share: |
| 245 | email = self.ri.repo.commit(sha).author.email |
| 246 | if email in dev_share: |
| 247 | dev_share[email] += commit_share[sha] |
| 248 | else: |
| 249 | dev_share[email] = commit_share[sha] |
| 250 | return dev_share |
| 251 | |
| 252 | def locrank_commits(self): |
| 253 | loc = {} |
nothing calls this directly
no test coverage detected