Kaydet (Commit) 14fc464e authored tarafından Barry Warsaw's avatar Barry Warsaw

__init__(): RFC 2046 $4.1.2 says charsets are not case sensitive.

Coerce the argument to lower case.  Also, since body encodings can't
be SHORTEST, default the CHARSETS failobj's second item to BASE64.
üst d4f7da3c
...@@ -177,13 +177,15 @@ class Charset: ...@@ -177,13 +177,15 @@ class Charset:
this attribute will have the same value as the input_codec. this attribute will have the same value as the input_codec.
""" """
def __init__(self, input_charset=DEFAULT_CHARSET): def __init__(self, input_charset=DEFAULT_CHARSET):
# RFC 2046, $4.1.2 says charsets are not case sensitive
input_charset = input_charset.lower()
# Set the input charset after filtering through the aliases # Set the input charset after filtering through the aliases
self.input_charset = ALIASES.get(input_charset, input_charset) self.input_charset = ALIASES.get(input_charset, input_charset)
# We can try to guess which encoding and conversion to use by the # We can try to guess which encoding and conversion to use by the
# charset_map dictionary. Try that first, but let the user override # charset_map dictionary. Try that first, but let the user override
# it. # it.
henc, benc, conv = CHARSETS.get(self.input_charset, henc, benc, conv = CHARSETS.get(self.input_charset,
(SHORTEST, SHORTEST, None)) (SHORTEST, BASE64, None))
# Set the attributes, allowing the arguments to override the default. # Set the attributes, allowing the arguments to override the default.
self.header_encoding = henc self.header_encoding = henc
self.body_encoding = benc self.body_encoding = benc
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment