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 maker
Recipients eric.araujo, ezio.melotti, l0nwlf, lemburg, maker, r.david.murray
Date 2011-05-22.06:47:41
SpamBayes Score 1.5465718e-06
Marked as misclassified No
Message-id <BANLkTi=-5i7PZP2q1jiYmqV3f-UBDg4T0w@mail.gmail.com>
In-reply-to <1306018319.76.0.231648422245.issue8898@psf.upfronthosting.co.za>
Content
Well, actually encodings.aliases links to the encoding _module name_, as
described in the doc:
""" Encoding Aliases Support
    This module is used by the encodings package search function to
    map encodings names to module names.
"""
So I've adjusted your snippet according to this, as you can see in the
attachment.

I've also slightly changed the imports as pep8 says:
"""
Yes: import os
import sys

No: import sys, os
"""

Anyway, running the test failed for two encodings, there are two bugs there,
indeed.
- mcbs has something broken in its imports;
- tactis module is not present.

Since they are really easy to fix, I haven't yet reported to the bugtraker.
Let me know what should I do.
Post on bugs.python.org bug and patch? Any new test specifically for the
email module?
Files
File name Uploaded
unnamed maker, 2011-05-22.06:47:41
History
Date User Action Args
2011-05-22 06:48:08makersetrecipients: + maker, lemburg, ezio.melotti, eric.araujo, r.david.murray, l0nwlf
2011-05-22 06:47:41makerlinkissue8898 messages
2011-05-22 06:47:41makercreate