Psyco is a Python extension module which can greatly speed up the execution of any Python code.
Questions tagged [psyco]
21 questions
1
vote
2 answers
Does Pypy Support PyTables and Numpy?
And if it doesn't, is there anyway to speed up my python code for accessing pytables on a 64-bit system (so no psyco)?

jab
- 5,673
- 9
- 53
- 84
0
votes
1 answer
Using pypy instead of psyco
Hi I am trying to make use of pypy on my Python 2.7 application running in windows XP.
Just read a little on psyco and it seems pretty easy to use see http://psyco.sourceforge.net/psycoguide/node8.html
if __name__ == '__main__':
# Import Psyco…

user595985
- 1,543
- 4
- 29
- 55
0
votes
2 answers
psyco complains about unsupported opcode 54, what is it?
The Psyco log output look like this:
21:08:47.56 Logging started, 10/29/09 %%%%%%%%%%%%%%%%%%%%
21:08:47.56 unsupported opcode 54 at create_l0:124 % %
21:08:47.56 unsupported opcode 54 at create_lx:228 …

Mauli
- 16,863
- 27
- 87
- 114
0
votes
1 answer
Python 2.6 importing packages (psyco) on Ubuntu
Why does importing psyco work when I call my script directly, but when I call it from a bash script it fails???
test.sh:
while true
do
python test.py;
sleep 10;
done
test.py:
try:
import psyco
print "Got psyco!"
except ImportError:
…

peu ping
- 399
- 1
- 6
- 14
0
votes
2 answers
Porting a Python app that uses Psyco to Mac
I'm trying to port my Python app from Windows to Mac. My app uses Psyco. How exactly do I install Psyco on Mac?
Keep in mind I'm a Mac newbie.

Ram Rachum
- 84,019
- 84
- 236
- 374
-1
votes
6 answers
How to improve the performance?
I had prepared a project on making a software application. It is complete and working fine except that the speed of execution is very slow.. I have taken several chunks of code and optimized it..
I tried psyco.. ie I installed psyco and added two…

kaki
- 1,043
- 5
- 14
- 20