Giovanni Bajo píše v Ne 02. 09. 2012 v 23:44 +0200: > The big thing missing for Python 3 is a concrete plan on how to get > there, *without* losing Python 2.x compatibility.
Let's put together a plan for adding Python 3 support. It could be split to two parts: - bootloader (C code) - other python code Bootloader - refactoring (making the code more maintainable - I work on that now.) - add unicode support in paths (this would fix a few bug reports) (C api of python 3 expects mostly paths as wchar_t types) I would like to do this step for PyInstaller 2.1 release. - add initialization of python3 dll Other python code - update bootloader python-related code _pyi_bootstrap.py, pyi_iu.py, pyi_archive.py, pyi_carchive.py (we'll probably need to change the way how bootloader is looking for modules - see http://www.pyinstaller.org/ticket/507) - make other code compatible with python 3 -- 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.
