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 binaryfeed
Recipients
Date 2005-05-19.21:42:12
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=189789

Well, idempotency is completely borked.  If I do:

f = file('somemessage')
import email
m = email.message_from_file(f)
f2 = file('newmsg', 'w')
f2.write(m.as_string())

somemessage and newmsg will be *different*.

This is hardly "what goes in equals what goes out".
History
Date User Action Args
2007-08-23 14:27:48adminlinkissue1072623 messages
2007-08-23 14:27:48admincreate