diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2008-11-09 22:56:35 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2008-11-09 22:56:35 +0000 |
commit | dceb0f2d7d36c99607ddd4b46ccdfa7c0c062a01 (patch) | |
tree | dea093561f9ccedb519d23980e5b80b2e9377dc0 /lang/cython/pkg-descr | |
parent | 22d90ee11494b42c70e8aa0265bb5148977b4e2a (diff) |
The Cython language makes writing C extensions for the Python language
as easy as Python itself. Cython is a source code translator based on
the well-known Pyrex, but supports more cutting edge functionality and
optimizations.
The Cython language is very close to the Python language (and most
Python code is also valid Cython code), but Cython additionally supports
calling C functions and declaring C types on variables and class
attributes. This allows the compiler to generate very efficient C code
from Cython code.
This makes Cython the ideal language for writing glue code for external
C libraries, and for fast C modules that speed up the execution of
Python code.
WWW: http://www.cython.org/
PR: ports/128722
Submitted by: Wen Heping <wenhping at gmail.com>
Notes
Notes:
svn path=/head/; revision=222650
Diffstat (limited to 'lang/cython/pkg-descr')
-rw-r--r-- | lang/cython/pkg-descr | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lang/cython/pkg-descr b/lang/cython/pkg-descr new file mode 100644 index 000000000000..78f106ac9e37 --- /dev/null +++ b/lang/cython/pkg-descr @@ -0,0 +1,16 @@ +The Cython language makes writing C extensions for the Python language +as easy as Python itself. Cython is a source code translator based on +the well-known Pyrex, but supports more cutting edge functionality and +optimizations. + +The Cython language is very close to the Python language (and most +Python code is also valid Cython code), but Cython additionally supports +calling C functions and declaring C types on variables and class +attributes. This allows the compiler to generate very efficient C code +from Cython code. + +This makes Cython the ideal language for writing glue code for external +C libraries, and for fast C modules that speed up the execution of +Python code. + +WWW: http://www.cython.org/ |