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 spaceone
Recipients spaceone
Date 2020-06-01.02:17:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1590977826.25.0.0895335032044.issue40837@roundup.psfhosted.org>
In-reply-to
Content
`encode_rfc2231()` must not change the returned value if no transformation of the input was done.
This is also mentioned in the docstring of that function.

Actual behavior:
encode_rfc2231('foo bar', None, None)
'foo%20bar'

Expected behavior:
encode_rfc2231('foo bar', None, None)
'foo bar'
History
Date User Action Args
2020-06-01 02:17:06spaceonesetrecipients: + spaceone
2020-06-01 02:17:06spaceonesetmessageid: <1590977826.25.0.0895335032044.issue40837@roundup.psfhosted.org>
2020-06-01 02:17:05spaceonelinkissue40837 messages
2020-06-01 02:17:04spaceonecreate