[issue27445] Charset instance not passed to set_payload()

2016-09-08 Thread Claude Paroz
Claude Paroz added the comment: Thanks for pushing the patch! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27445] Charset instance not passed to set_payload()

2016-09-08 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch, Claude. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue27445] Charset instance not passed to set_payload()

2016-09-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4f6fef83cd0c by Berker Peksag in branch '3.5': Issue #27445: Don't pass str(_charset) to MIMEText.set_payload() https://hg.python.org/cpython/rev/4f6fef83cd0c New changeset c5cb8bd335ae by Berker Peksag in branch 'default': Issue #27445: Merge from

[issue27445] Charset instance not passed to set_payload()

2016-09-07 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag stage: -> patch review type: -> behavior versions: +Python 3.5 ___ Python tracker ___ ___

[issue27445] Charset instance not passed to set_payload()

2016-07-02 Thread Claude Paroz
Changes by Claude Paroz : -- keywords: +patch Added file: http://bugs.python.org/file43614/issue27445.diff ___ Python tracker ___ ___

[issue27445] Charset instance not passed to set_payload()

2016-07-02 Thread Claude Paroz
New submission from Claude Paroz: In issue #16324, I contributed an improvement so as MIMEText __init__ accept Charset instances, not only encoding strings. The use case is from Django where we customize the Charset.body_encoding before passing it to the MIMEText initialization. Unfortunately