The Cython compiler for writing C extensions for the Python language
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.
- Developed at devel:languages:python
- Sources inherited from project openSUSE:Factory
-
9
derived packages
- Download package
-
Checkout Package
osc -A https://api.opensuse.org checkout openSUSE:Factory:zSystems/python-Cython && cd $_
- Create Badge
Refresh
Refresh
Source Files
Filename | Size | Changed |
---|---|---|
Cython-0.29.10.tar.gz | 0002049468 1.95 MB | |
cython_use_imgmath.patch | 0000001036 1.01 KB | |
python-Cython-rpmlintrc | 0000000189 189 Bytes | |
python-Cython.changes | 0000067011 65.4 KB | |
python-Cython.spec | 0000003805 3.72 KB |
Revision 49 (latest revision is 84)
Dominique Leuenberger (dimstar_suse)
accepted
request 709360
from
Tomáš Chvátal (scarabeus_iv)
(revision 49)
- Say goodbye to -doc subpackage as the documentation is online and does not build with latest sphinx releases (even in master at the moment). - The testing in -doc spec was disabled anyway and if needed we will reintroduce it as a multibuild - update to 0.29.10 * Fix compile errors in CPython 3.8b1 due to the new "tp_vectorcall" slots. * Remove an incorrect cast when using true-division in C++ operations. * C compile errors with CPython 3.8 were resolved. * Python tuple constants that compare equal but have different item types could incorrectly be merged into a single constant. * Non-ASCII characters in unprefixed strings could crash the compiler when used with language level 3str * Starred expressions in %-formatting tuples could fail to compile for unicode strings * Passing Python class references through cython.inline() was broken.
Comments 0