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

Re: [pygame] PyGame slowdown



Here's something that might be useful: <a href=http://psyco.sourceforge.net/>Psyco</a>. It's a C-based accelerator module for Python that can apparently greatly increase speed with no further change to the code than:

import psyco
psyco.full()

There's no obvious effect on my machine, but I suspect this is because it's a laptop with one-generation-old graphics hardware.