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 jamercee
Recipients jamercee, serhiy.storchaka
Date 2019-10-15.11:59:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1571140763.63.0.418366889447.issue38482@roundup.psfhosted.org>
In-reply-to
Content
According to the documentation (https://docs.python.org/3.7/library/codecs.html#codecs.iterdecode), the first parameter is a bytes object to decode (not an iterable of bytes). Which is also consistent with it's companion iterencode() which accepts a str object, not an iterable of chars.

Seems logical that one should be able to pass the output from iterencode() as the direct input to iterdecode() without having to convert, no?
History
Date User Action Args
2019-10-15 11:59:23jamerceesetrecipients: + jamercee, serhiy.storchaka
2019-10-15 11:59:23jamerceesetmessageid: <1571140763.63.0.418366889447.issue38482@roundup.psfhosted.org>
2019-10-15 11:59:23jamerceelinkissue38482 messages
2019-10-15 11:59:23jamerceecreate