Py_UNICODE

Py_UNICODE is the native Unicode storage format (code unit) used by Python and represents a single Unicode element in the Unicode type.

  1. alias Py_UNICODE = wchar
    version(Python_Unicode_UCS2 && Windows)
    alias Py_UNICODE = wchar
  2. alias Py_UNICODE = ushort
  3. alias Py_UNICODE = uint

Meta