[Python-Dev] PEP 393 Summer of Code Project

Greg Ewing greg.ewing at canterbury.ac.nz
Sat Aug 27 02:17:18 CEST 2011


Paul Moore wrote:

> IronPython and Jython can retain UTF-16 as their native form if that
> makes interop cleaner, but in doing so they need to ensure that basic
> operations like indexing and len work in terms of code points, not
> code units, if they are to conform. ... They lose the O(1)
> guarantee, but that's easily defensible as a tradeoff to conform to
> underlying runtime semantics.

I would only agree as long as it wasn't too much worse
than O(1). O(log n) might be all right, but O(n) would be
unacceptable, I think.

-- 
Greg


More information about the Python-Dev mailing list