Mike Hoy <mho...@gmail.com> added the comment:

:~/peps$ find . -name "*.txt" | xargs grep "canterbury"
./pep-3152.txt:Author: Gregory Ewing <greg.ew...@canterbury.ac.nz>
./pep-0380.txt:Author: Gregory Ewing <greg.ew...@canterbury.ac.nz>
./pep-0284.txt:    Greg Ewing <greg.ew...@canterbury.ac.nz>
./pep-0335.txt:Author: Gregory Ewing <g...@cosc.canterbury.ac.nz>

Looks like pep-0335.txt has a "Gregory Ewing" with a different email address 
(g...@cosc.canterbury.ac.nz) that is normally associated with "Gregory Ewing" 
(greg.ew...@canterbury.ac.nz).

Which is an error according to:

pep0/output.py:

    if too_many_emails:
        err_output = []
        for author, emails in too_many_emails:
            err_output.append("    %s: %r" % (author, emails))
        raise ValueError("some authors have more than one email address "
                         "listed:\n" + '\n'.join(err_output))

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue13154>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to