[Py2exe-users] Python 2.5 issues with get_fakeline
by Tim Tucker other posts by this author
Jul 31 2006 10:37AM messages near this date
Re: [Py2exe-users] GUI for py2exe
|
[Py2exe-users] requires .NET
I've been running into some exceptions from tracebacks -- they seem to
be stemming from fake_getline() in boot_common.py taking only 2
parameters (things within Python are trying to feed in 3).
Seems to stem from the addition of an extra parameter to
linecache.getline in Python 2.5.
Changing:
def fake_getline(filename, lineno):
in boot_common.py to:
def fake_getline(filename, lineno, module_globals=None):
may solve the problem.
Tim
tim@[...].com
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Py2exe-users mailing list
Py2exe-users@[...].net
https://lists.sourceforge.net/lists/listinfo/py2exe-users
|