[PyInstaller] Problem in porting PyInstaller to Python 3

2009-07-24 Thread laksh
I am new to Python and my project (MyProject) uses PyInstaller to create standalone executable. I am using the latest PyInstaller trunk from http://www.pyinstaller.org/browser/trunk?rev=674 and MyProject works fine with this PyInstaller and Python 2.6. Now I need to port MyProject to Python

[PyInstaller] Re: Problem in porting PyInstaller to Python 3

2009-08-06 Thread laksh
at location 0x78588389” Any clue on this will be appreciated. I also want to share my changes with you but I am not sure where to upload the files. On Aug 1, 8:49 pm, Giovanni Bajo ra...@develer.com wrote: On ven, 2009-07-24 at 03:33 -0700, laksh wrote: I am new to Python and my project

[PyInstaller] Re: #85: Supporing Python 3

2009-08-26 Thread laksh
The same changes is working well with Python 3.1.1, after commenting the the following lines from mf.py JUMP_IF_FALSE = dis.opname.index('JUMP_IF_FALSE') JUMP_IF_TRUE = dis.opname.index('JUMP_IF_TRUE') COND_OPS = [JUMP_IF_TRUE, JUMP_IF_FALSE] if not incondition and op in COND_OPS:

[PyInstaller] Supporting Python 3: Executable breaks with UnicodeEncodeError in Python 3.1.1

2009-09-18 Thread laksh
Hi All, Recently I had tried to port Pyinstaller (from trunk) to support Python 3 (please see my previous post at http://groups.google.com/group/pyinstaller/browse_thread/thread/96b7a9085015cec6 ). It was working well with Python 3.0.1 on Linux, but failing on Windows. Now when I tried the same