[issue41104] IMAPlib debug errors

2021-10-21 Thread Irit Katriel
Irit Katriel added the comment: This function was rewritten in PR15206 and this line is no longer there. -- nosy: +iritkatriel resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker

[issue41104] IMAPlib debug errors

2020-06-24 Thread skorpeo
New submission from skorpeo : This line in imaplib.py inside _dump_ur function: l = map(lambda x:'%s: "%s"' % (x[0], x[1][0] and '" "'.join(x[1]) or ''), l) fails because the untagged responses are bytestrings and it expects regular strings. -- components: Library (Lib) messages: 3722