Tagged Questions

5
votes
4answers
546 views

Why does Psyco use a lot of memory?

Psyco is a specialising compiler for Python. The documentation states Psyco can and will use large amounts of memory. What are the main reasons for this memory usage? Is substantial memory ...
3
votes
2answers
104 views

Looking for a good replacement for Psyco (Python->C compiler)

We really like Psyco to speed things up, but it also has some drawbacks: it consumes too much memory it can also slow some code down compiling your code can take too much time it doesn't support ...