Neal Becker wrote:
> How do I tell if my python-2.5 is build with ucs2 or ucs4?

You can also check sys.maxunicode.

>>> import sys
>>> sys.maxunicode

If it's 1114111, you're UCS-4. If it's something much lower, you're UCS-2.
-- 
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to