[issue32298] Email.quopriprime over-encodes characters

Geoff Kuenning report at bugs.python.org
Tue Dec 12 20:28:07 EST 2017


Geoff Kuenning <geoff at cs.hmc.edu> added the comment:

Oops, that loop is a bit too generous.  Here's a better one:

for c in list(range(33, 61)) + [62] + list(range(64, 95)) + list(range(96,127)):

----------

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue32298>
_______________________________________


More information about the Python-bugs-list mailing list