John Nagle wrote:
>    Does
> 
>       text = unicode(text)
> 
> make a copy of a Unicode string, or is that essentially a
> free operation if the input is already Unicode?

>>> u = u"some long unicode object"
>>> unicode(u) is u
True
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to