Python UTF - UCS2 or UCS4
This is version
1
2
. It is not the current version, and thus it cannot be edited.
Back to current version
Restore this version
To determine if your python installation is UCS2 or UCS4, from a python shell type
import sys sys.maxunicode > 65536 and 'UCS4' or 'UCS2'
Python