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:Leap:16.0:FactoryCandidates/python-Cython && cd $_
- Create Badge
Refresh
Refresh
Source Files
Filename | Size | Changed |
---|---|---|
Cython-0.29.35.tar.gz | 0002097520 2 MB | |
python-Cython-rpmlintrc | 0000000194 194 Bytes | |
python-Cython.changes | 0000089791 87.7 KB | |
python-Cython.spec | 0000003322 3.24 KB |
Revision 71 (latest revision is 84)
Dominique Leuenberger (dimstar_suse)
accepted
request 1089349
from
Dirk Mueller (dirkmueller)
(revision 71)
- update to 0.29.35: * A garbage collection enabled subtype of a non-GC extension type could call into the deallocation function of the super type with GC tracking enabled. This could lead to crashes during deallocation if GC was triggered on the type at the same time. * Some C compile failures and crashes in CPython 3.12 were resolved. * ``except + nogil`` was syntactically not allowed. * ``except +nogil`` (i.e. defining a C++ exception handling function called ``nogil``) is now disallowed to prevent typos. * A C compile failure in PyPy 3.10 was resolved. * Cython modules now use PEP-489 multi-phase init by default in PyPy 3.9 and later. * API header files generated by different Cython versions can now be included in the same C file. * Function signatures containing a type like `tuple[()]` could not be printed.
Comments 0