This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mikehoy
Recipients docs@python, mikehoy, pitrou
Date 2011-10-12.21:10:16
SpamBayes Score 0.04394495
Marked as misclassified No
Message-id <1318453817.1.0.183738267313.issue13154@psf.upfronthosting.co.za>
In-reply-to
Content
:~/peps$ find . -name "*.txt" | xargs grep "canterbury"
./pep-3152.txt:Author: Gregory Ewing <greg.ewing@canterbury.ac.nz>
./pep-0380.txt:Author: Gregory Ewing <greg.ewing@canterbury.ac.nz>
./pep-0284.txt:    Greg Ewing <greg.ewing@canterbury.ac.nz>
./pep-0335.txt:Author: Gregory Ewing <greg@cosc.canterbury.ac.nz>

Looks like pep-0335.txt has a "Gregory Ewing" with a different email address (greg@cosc.canterbury.ac.nz) that is normally associated with "Gregory Ewing" (greg.ewing@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))
History
Date User Action Args
2011-10-12 21:10:17mikehoysetrecipients: + mikehoy, pitrou, docs@python
2011-10-12 21:10:17mikehoysetmessageid: <1318453817.1.0.183738267313.issue13154@psf.upfronthosting.co.za>
2011-10-12 21:10:16mikehoylinkissue13154 messages
2011-10-12 21:10:16mikehoycreate