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 r.david.murray
Recipients BreamoreBoy, pitrou, r.david.murray
Date 2010-10-03.04:18:09
SpamBayes Score 1.4344081e-13
Marked as misclassified No
Message-id <1286079493.41.0.00710763891787.issue6302@psf.upfronthosting.co.za>
In-reply-to
Content
Here is a patch that makes the output consistently (bytes, string) pairs.  This is definitely a potential backward compatibility issue, but in general code which compensates for the old behavior should work fine with the new behavior, since it was always possible to get a (bytes, None) tuple back as a result, so most code should be handling that case correctly already.

IMO this change is nevertheless worthwhile; especially since if the patch in issue 4661 is accepted decode_header can be enhanced so that it will provide a way to obtain the bytes version of a header containing (RFC invalid) non-ASCII bytes.

Note that this breaks one of the tests in nttplib, so backward compatibility really is an issue, unfortunately.  I think nttplib's use case can be satisfied via the issue 4661 patch coupled with the decode_header bytes-recovery enhancement.
History
Date User Action Args
2010-10-03 04:18:13r.david.murraysetrecipients: + r.david.murray, pitrou, BreamoreBoy
2010-10-03 04:18:13r.david.murraysetmessageid: <1286079493.41.0.00710763891787.issue6302@psf.upfronthosting.co.za>
2010-10-03 04:18:11r.david.murraylinkissue6302 messages
2010-10-03 04:18:10r.david.murraycreate