gh-85014: Fix email.utils.encode_rfc2231(string, None, None)#20564
gh-85014: Fix email.utils.encode_rfc2231(string, None, None)#20564spaceone wants to merge 1 commit intopython:mainfrom
Conversation
This comment was marked as resolved.
This comment was marked as resolved.
|
@spaceone , please sign the CLA and we will need a bugs.python.org issue number. |
|
|
This PR is stale because it has been open for 30 days with no activity. |
|
@ezio-melotti why did you remove the CLA Signed label? |
jeah, lol. No merge since 6 years. |
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'
|
Most changes to Python require a NEWS entry. Add one using the blurb_it web app or the blurb command-line tool. If this change has little impact on Python users, wait for a maintainer to apply the |
We no longer use labels for this -- we now have the "CLA Signing" check instead. I also updated the title to link to the GH issue: |
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:
Expected behavior:
https://bugs.python.org/issue40837