In trying to add unicode support to the bootloader, I ran into something that I'm not sure how to deal with. I don't know if it is important or not....
in the startPython() routine, there is the following call: PI_Py_SetProgramName(status->archivename) status->archive was char*, but is now (in my build) whar_t* (unicode in the windows world). But I don't see any unicode version of Py_SetProgram name in the Python API. So is SetProgramName actually used for anything? The program name is already set a little later in the argv vector anyway. Seems redundant to me, but I was certainly afraid to take it out, not knowing the consequences. -- Daniel Hyams [email protected] -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pyinstaller?hl=en.
