start
Table of Contents

--psyco=PSYCO

Psyco is an optimiser for Python programs. It takes the sections that are run often or that could benefit from complitaiton and compiles them into machine language. This machine code is executed instead of the Python bytecode.

If you didn’t understand any of that then simply understand that it makes you program run faster.

By default it is switched on, so you can safely ignore this option and benefit from psyco optimisations anyway.

Note psyco only work on i386 architectures.

none

Switch psyco optimisation off.

full (default)

This is the default option if no --psyco is not specified.

FIXME

profile

FIXME