1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
Source: psyco
Section: python
Priority: optional
Maintainer: Alexandre Fayolle <afayolle@debian.org>
Build-Depends: debhelper (>= 5.0.38), python-all-dev, python-all, python-central (>=0.5.6), python2.5-dev
XS-Python-Version: >= 2.2, << 2.6
Standards-Version: 3.7.2
Package: python-psyco
Architecture: i386 hurd-i386 netbsd-i386 kfreebsd-i386
XB-Python-Version: ${python:Versions}
Depends: ${python:Depends}, ${shlibs:Depends}
Provides: ${python:Provides}
Conflicts: python2.3-psyco, python2.4-psyco
Replaces: python2.3-psyco, python2.4-psyco
Description: python specializing compiler
Psyco lets you run your existing Python software much faster, with no
change in your source.
.
Think of Psyco as a kind of just-in-time (JIT) compiler, a little bit
like Java's, that emit machine code on the fly instead of
interpreting your Python program step by step. The result is that
your unmodified Python programs run faster.
.
The plan for the next release is to include a fast low-level
interpreter that can be used on non-Intel processors. It will finally
make Psyco portable -- althought of course not as fast as it could
possibly be if it could emit real machine code.
.
Homepage: http://psyco.sourceforge.net
|