Victor Stinner
9d3b93ba30
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()
2011-11-22 02:27:30 +01:00
..
2010-05-09 16:14:21 +00:00
2011-07-19 18:28:30 -04:00
2006-03-08 19:35:11 +00:00
2011-01-31 21:36:33 +00:00
2011-03-15 19:19:04 +02:00
2011-01-31 21:36:33 +00:00
2006-03-08 19:35:11 +00:00
2011-11-22 02:27:30 +01:00
2011-09-12 21:03:36 +02:00
2011-10-14 10:20:37 +02:00
2011-11-21 02:11:26 +01:00
2006-08-11 14:57:12 +00:00
2010-08-10 00:22:01 +00:00
2010-03-19 19:02:09 +00:00
2010-09-05 18:25:59 +00:00
2011-10-03 21:48:30 -05:00