dtlog:
> So the question is, should I switch to IronPython and compile
> my scripts, or learn to use something like pyinline or Psyco?

Learning to use Psyco is very easy, for a basic usage you just have to
put in your code:
import psyco
psyco.full()

For a better usage you can do:
psyco.bind(functioname)
for just the functions that you have seen can enjoy the compilation.

For a smart usage you can learn few tricks to help its job. The last
page of the psyco manual helps.

pyinline is rather easy to use if you have linux and you know C.

Bye,
bearophile

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to