|
From: Werner F. B. <wer...@fr...> - 2010-02-25 10:19:53
|
Hi Noam, On 25/02/2010 10:09, Noam Yorav-Raphael wrote: > Hello, > > I've written a program called DreamPie > (http://dreampie.sourceforge.net), and it includes a gtk exception > hook which helps users report bugs. It prints the stack trace, to help > in finding out what's wrong. > > Since library.zip doesn't include the .py sources of my application, > the stack traces include only line numbers and not the contents. This is part of an error report I got from a user of my py2exe'd application. Traceback (most recent call last): File "twcbF.pyo", line 1969, in OnStartWineButton File "twcbF.pyo", line 1977, in DoStartWine File "zipextimporter.pyo", line 82, in load_module File "appwine.pyo", line 39, in <module> File "zipextimporter.pyo", line 82, in load_module File "framewwwsearch.pyo", line 17, in <module> File "zipextimporter.pyo", line 82, in load_module File "wx\lib\iewin.pyo", line 15, in <module> File "zipextimporter.pyo", line 82, in load_module File "wx\lib\activex.pyo", line 36, in <module> File "zipextimporter.pyo", line 82, in load_module File "comtypes\__init__.pyo", line 1041, in <module> File "comtypes\__init__.pyo", line 229, in __new__ File "comtypes\__init__.pyo", line 314, in __setattr__ File "comtypes\__init__.pyo", line 617, in _make_methods File "comtypes\GUID.pyo", line 44, in __unicode__ File "\loewis\25\python\Modules\_ctypes\callproc.c", line 757, in GetResult WindowsError: [Error -65535] Windows Error 0xFFFF0001 It looks pretty much identical to the one I get when I run into the same error on my dev machine (i.e. running from within Boa). > > Is it possible to include the source modules of my application (not of > all modules) in library.zip, so that stack traces will be more > meaningful? I don't think so. Werner |