[issue11556] email.Message.get_payload can handle bytes payloads (minor doc fix)

2011-03-15 Thread R. David Murray
R. David Murray added the comment: Fixed, thanks. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___ __

[issue11556] email.Message.get_payload can handle bytes payloads (minor doc fix)

2011-03-15 Thread R. David Murray
Changes by R. David Murray : -- versions: +Python 3.2, Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue11556] email.Message.get_payload can handle bytes payloads (minor doc fix)

2011-03-15 Thread R. David Murray
Changes by R. David Murray : -- assignee: -> r.david.murray ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue11556] email.Message.get_payload can handle bytes payloads (minor doc fix)

2011-03-15 Thread Michael Henry
New submission from Michael Henry : In email.Message.get_payload, there is the following out-of-date comment: """ # payload can be bytes here, (I wonder if that is actually a bug?) """ The code can actually handle bytes payloads. -- components: Library (Lib) messages: 130982 nosy: mich