SIGN IN SIGN UP
python / cpython UNCLAIMED

The Python programming language

72156 0 68 Python

Use the new Unicode API

* Replace PyUnicode_FromUnicode(NULL, 0) by PyUnicode_New(0, 0)
 * Replce PyUnicode_FromUnicode(str, len) by PyUnicode_FromWideChar(str, len)
 * Replace Py_UNICODE by wchar_t
 * posix_putenv() uses PyUnicode_FromFormat() to create the string, instead
   of PyUnicode_FromUnicode() + _snwprintf()
V
Victor Stinner committed
9d3b93ba305e8a83bf1cec5146def2078e40b1a5
Parent: b84d723