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: email module param parsing bug
Type: Stage:
Components: Library (Lib) Versions:
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: barry Nosy List: barry, customdesigned
Priority: normal Keywords:

Created on 2003-08-25 03:50 by customdesigned, last changed 2022-04-10 16:10 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
testemail.py customdesigned, 2003-08-25 03:50 Code to show problem and propose fix
Messages (2)
msg17946 - (view) Author: Stuart D. Gathman (customdesigned) Date: 2003-08-25 03:50
Run the included test program in Python 2.2.2 or 2.3.  
------------------
$ python2 testemail.py
[('image/pjpeg', ''), ('name', '"Jim&amp'), ('&amp',
''), ('Jill"', '')]
[('image/pjpeg', ''), ('name', 'Jim&&Jill')]

The first answer is wrong.  The second is correct.
msg17947 - (view) Author: Barry A. Warsaw (barry) * (Python committer) Date: 2003-09-03 04:09
Logged In: YES 
user_id=12800

Accepted your fix of _parseparamv().  Thanks!
History
Date User Action Args
2022-04-10 16:10:49adminsetgithub: 39123
2003-08-25 03:50:33customdesignedcreate