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.

classification
Title: quopri, soft line breaks and CRLF
Type: Stage:
Components: Library (Lib) Versions:
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: gvanrossum Nosy List: doerwalter, gvanrossum
Priority: normal Keywords: patch

Created on 2001-03-14 21:31 by doerwalter, last changed 2022-04-10 16:03 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
diff.txt doerwalter, 2001-03-14 21:31 patch
Messages (2)
msg36051 - (view) Author: Walter Dörwald (doerwalter) * (Python committer) Date: 2001-03-14 21:31
This patch fixes a small problem with quopri:

Soft Line Breaks (i.e. lines ending with '='; 
see RFC 1521 2.1 Rule #5) do not work with CRLF line 
endings, because \r will not be stripped off from
the read line. This patch fixes this problem by
adding \r to the whitespace characters that are
stripped off of the end of the line.
msg36052 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2001-03-23 02:48
Logged In: YES 
user_id=6380

Checked in.
History
Date User Action Args
2022-04-10 16:03:51adminsetgithub: 34147
2001-03-14 21:31:37doerwaltercreate