[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

Re: [pygame] C/C++ and Python



Psyco working?  It looks like it might not work on 64 bit machines.  The Psyco Intro says Psyco "only runs on Intel 386-compatible processors", and Wikipedia says that's 32 bit.  I could be wrong, but that might mean it won't work. 

Regardless of what other packages you're using, (and assuming it's compatible) you can use Psyco pretty easily:

import psyco
psyco.full()

At the top of your main file. 

Ian