Get the authors who have commited to the repository, one name per commit
(repos)
| 16 | return info.url |
| 17 | |
| 18 | def authors(repos): |
| 19 | "Get the authors who have commited to the repository, one name per commit" |
| 20 | return [log["author"] for log in pysvn.Client().log(repos)] |
| 21 | |
| 22 | def histogram(seq): |
| 23 | result = {} |