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 fullung2
Recipients
Date 2006-06-28.10:51:56
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Steps to reproduce:

>>> from email.MIMEText import MIMEText
>>> msg = MIMEText('')
>>> msg['To'] = 'foo@bar.com'
>>> msg['To']
'foo@bar.com'
>>> msg['To'] = 'foo@baz.com'
>>> msg['To']
'foo@bar.com' (should be @baz.com?)

Same problem exists in Python 2.4.3 and Python 2.5b1.
History
Date User Action Args
2007-08-23 14:40:54adminlinkissue1513913 messages
2007-08-23 14:40:54admincreate