STINNER Victor added the comment:

"As for output, we could use cached UTF-8 representation of string (always 
exists for ASCII only strings) before calling PyUnicode_AsUTF8String()."

PyUnicode_AsEncodedString(v, "utf8", "surrogatepass") is expensive. I proposed 
an optimization for the pickle module, Antoine finished the work: see issue 
#15596. It's exactly what you suggest: reuse PyUnicode_AsUTF8String().

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue19219>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to