aboutsummaryrefslogtreecommitdiff
path: root/lang/cython
Commit message (Collapse)AuthorAgeFilesLines
...
* - Update to 0.11.2Martin Wilke2009-05-292-4/+4
| | | | | | | | PR: 134884 Submitted by: Wen Heping <wenheping@gmail.com> (maintainer) Notes: svn path=/head/; revision=234771
* - Update to 0.11.1Martin Wilke2009-05-012-4/+4
| | | | | | | Approved by: maintainer implicit Notes: svn path=/head/; revision=233086
* - Update to 0.11Martin Wilke2009-03-153-5/+22
| | | | | | | | PR: 132663 Submitted by: Wen heping <wenheping@gmail.com> (maintainer) Notes: svn path=/head/; revision=230160
* - Update to 0.10.3Martin Wilke2008-12-262-4/+4
| | | | | | | Approved by: maintainer implicit Notes: svn path=/head/; revision=224835
* - Update to 0.10.2Martin Wilke2008-12-012-4/+4
| | | | | | | | PR: 129209 Submitted by: Wen Heping <wenheping@gmail.com> (maintainer) Notes: svn path=/head/; revision=223684
* The Cython language makes writing C extensions for the Python languageMartin Wilke2008-11-094-0/+302
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: svn path=/head/; revision=222650