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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, christian.heimes, gpolo, kbk, quentin.gallet-gilles
Date 2008-09-04.07:32:36
SpamBayes Score 0.0006200286
Marked as misclassified No
Message-id <1220513557.95.0.994259404581.issue1658@psf.upfronthosting.co.za>
In-reply-to
Content
The patch is indeed simple.

A minor stylistic remark: instead of 
    for c in classes:
        del cnf[c[0]]
it would be clearer to write
    for k, v in classes:
        del cnf[v]
like the other loop does, 3 lines after.

Please apply.
History
Date User Action Args
2008-09-04 07:32:38amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, kbk, christian.heimes, quentin.gallet-gilles, gpolo
2008-09-04 07:32:37amaury.forgeotdarcsetmessageid: <1220513557.95.0.994259404581.issue1658@psf.upfronthosting.co.za>
2008-09-04 07:32:36amaury.forgeotdarclinkissue1658 messages
2008-09-04 07:32:36amaury.forgeotdarccreate