(seq)
| 20 | return [log["author"] for log in pysvn.Client().log(repos)] |
| 21 | |
| 22 | def histogram(seq): |
| 23 | result = {} |
| 24 | for x in seq: |
| 25 | result.setdefault(x, 0) |
| 26 | result[x] += 1 |
| 27 | return result |
| 28 | |
| 29 | def format2cols(items): |
| 30 | max_width = max(len(str(x)) for (x,y) in items) |
no test coverage detected