On 24.05.16 13:16, Victor Stinner wrote: > 2016-05-24 6:22 GMT+02:00 Ned Deily <n...@python.org>: >> Is it time to discuss your shortlist? > > It would be nice to have a script parsing commit messages to find all > "patch written by ..." and compute statistics on this.
I use one-liners like the following: $ hg log -M -k 'de Gaye' --template '{desc|firstline}\n' | sort -u | wc -l 20 But you should know the name before searching. _______________________________________________ python-committers mailing list python-committers@python.org https://mail.python.org/mailman/listinfo/python-committers Code of Conduct: https://www.python.org/psf/codeofconduct/