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.7.tar.gz | 0002047944 1.95 MB | |
cython_use_imgmath.patch | 0000001036 1.01 KB | |
python-Cython-doc.changes | 0000082208 80.3 KB | |
python-Cython-doc.spec | 0000003066 2.99 KB | |
python-Cython-rpmlintrc | 0000000189 189 Bytes | |
python-Cython.changes | 0000065863 64.3 KB | |
python-Cython.spec | 0000003804 3.71 KB |
Revision 48 (latest revision is 84)
Dominique Leuenberger (dimstar_suse)
accepted
request 694800
from
Ondřej Súkup (mimi_vx)
(revision 48)
- update to 0.29.7 * Crash when the shared Cython config module gets unloaded and another Cython module reports an exceptions. Cython now makes sure it keeps an owned reference to the module * Resolved a C89 compilation problem when enabling the fast-gil sharing feature. * Coverage reporting did not include the signature line of cdef functions * Casting a GIL-requiring function into a nogil function now issues a warning * Generators and coroutines were missing their return type annotation - update to 0.29.7 * Crash when the shared Cython config module gets unloaded and another Cython module reports an exceptions. Cython now makes sure it keeps an owned reference to the module * Resolved a C89 compilation problem when enabling the fast-gil sharing feature. * Coverage reporting did not include the signature line of cdef functions * Casting a GIL-requiring function into a nogil function now issues a warning * Generators and coroutines were missing their return type annotation
Comments 0