diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-02-05 10:57:17 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-02-05 10:57:17 (GMT) |
commit | 09264b66f2fa28cc68433bf3b85e6c6c04403c6f (patch) | |
tree | 794a01f4d9d16a03fead6f929f7d8492bbf8fff1 /Doc/faq/programming.rst | |
parent | eb50ba5ab798146b9e7606a2796ed6b3af382444 (diff) | |
download | cpython-09264b66f2fa28cc68433bf3b85e6c6c04403c6f.zip cpython-09264b66f2fa28cc68433bf3b85e6c6c04403c6f.tar.gz cpython-09264b66f2fa28cc68433bf3b85e6c6c04403c6f.tar.bz2 |
Mention Cython and remove obsolete alternatives
Diffstat (limited to 'Doc/faq/programming.rst')
-rw-r--r-- | Doc/faq/programming.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index fdfd9ec..07e6818 100644 --- a/Doc/faq/programming.rst +++ b/Doc/faq/programming.rst @@ -127,9 +127,9 @@ increased speed. .. XXX seems to have overlap with other questions! -`Pyrex <http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/>`_ can compile a -slightly modified version of Python code into a C extension, and can be used on -many different platforms. +`Cython <http://cython.org>`_ and `Pyrex <http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/>`_ +can compile a slightly modified version of Python code into a C extension, and +can be used on many different platforms. `Psyco <http://psyco.sourceforge.net>`_ is a just-in-time compiler that translates Python code into x86 assembly language. If you can use it, Psyco can |