Amaury Forgeot d'Arc <[email protected]> added the comment: Every function of the Windows API comes in pair: an Ansi function (which accepts char* names) and a Wide function (which accepts wchar_t* names; Py_UNICODE* can be passed as-is)
Don't perform conversion on Windows, just call the proper function. ---------- nosy: +amaury.forgeotdarc _______________________________________ Python tracker <[email protected]> <http://bugs.python.org/issue4035> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
