[issue11780] email.encoders are broken

2012-03-16 Thread R. David Murray
R. David Murray added the comment: Thanks, fixed. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue11780] email.encoders are broken

2012-03-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset 195b67c26ce7 by R David Murray in branch '3.2': #11780: s/throw/raise/ http://hg.python.org/cpython/rev/195b67c26ce7 New changeset 63c46a8547fb by R David Murray in branch 'default': Merge #11780: s/throw/raise/ http://hg.python.org/cpython/rev/63c

[issue11780] email.encoders are broken

2012-03-16 Thread Éric Araujo
Éric Araujo added the comment: I think it’s best to always say that exceptions are raised, and keep “throw” for the generator method. It’s consistent and avoids confusion. -- nosy: +eric.araujo ___ Python tracker

[issue11780] email.encoders are broken

2012-03-16 Thread R. David Murray
R. David Murray added the comment: Nope, those errors are correct. The encodings functions do not apply to Multipart messages. I've updated the docs to reflect that. -- components: +Documentation -Library (Lib) resolution: -> fixed stage: -> committed/rejected status: open -> close

[issue11780] email.encoders are broken

2012-03-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1be426a555ca by R David Murray in branch '3.2': #11780: document that email.encoders throw TypeError on multipart messages. http://hg.python.org/cpython/rev/1be426a555ca New changeset 060eda590fa0 by R David Murray in branch 'default': Merge #11780

[issue11780] email.encoders are broken

2011-09-17 Thread R. David Murray
R. David Murray added the comment: I may have, but I'd prefer to check before closing the issue. (I'm deep in another project right now, but I'll review all these open bugs this fall some time). -- status: closed -> open ___ Python tracker

[issue11780] email.encoders are broken

2011-09-17 Thread Steffen Daode Nurpmeso
Steffen Daode Nurpmeso added the comment: I think this is historic either? As far as i remember you solved it as part of another issue... -- status: open -> closed ___ Python tracker __

[issue11780] email.encoders are broken

2011-04-06 Thread R. David Murray
Changes by R. David Murray : -- assignee: -> r.david.murray nosy: +r.david.murray ___ Python tracker ___ ___ Python-bugs-list mailing

[issue11780] email.encoders are broken

2011-04-06 Thread Steffen Daode Nurpmeso
New submission from Steffen Daode Nurpmeso : This is what one gets if using a BytesParser() generated message: encoders.encode_7or8bit(msg) AttributeError: 'list' object has no attribute 'decode' encoders.encode_base64(msg) TypeError: expected bytes, not list encoders.encode_quopri(msg) TypeE