Giovanni Bajo píše v Út 26. 07. 2011 v 12:04 +0200: > > I oppose any drop in compatibility that it is not backed by a strong > showstopper. If it's needed for Python3, we can still make it > conditional > so that it only gets triggered for newer Python versions.
Use subprocess module will give us more portability and better unicode handling, especially for Windows platform. Because it allows running subprocesses without executing windows shell. Windows shell has never been ported to handle unicode properly. Bypassing windows shell we do not need to worry about different windows code pages and stuff like that. Windows and unicode is showstopper. -- 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.
