Differences between revisions 1 and 2
Revision 1 as of 2004-02-06 14:00:13
Size: 440
Editor: cache1-1-ffm-vpn
Comment: inital page
Revision 2 as of 2004-02-06 14:00:40
Size: 446
Editor: cache1-1-ffm-vpn
Comment: fix markup
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
=Situation= = Situation =
Line 4: Line 4:
=Idea= = Idea =
Line 8: Line 8:
=doing it= = doing it =

Situation

py2exe-ing larger projekts take some time for byte compilation at all.

Idea

Maybe [http://psyco.sourceforge.net psyco] will help? as Armin Rigo writes... "Psyco is a Python extension module which can massively speed up the execution of any Python code."

doing it

at the top of setup.py I inserted

   1 import psyco
   2 psyco.log()
   3 psyco.full()

and it feels faster. No time to benchmark, yet

SpeedUp (last edited 2008-07-08 11:27:43 by localhost)