saltbundlepy-cython
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.
- Sources inherited from project systemsmanagement:s...ack:bundle:testing
-
1
derived packages
- Download package
-
Checkout Package
osc -A https://api.opensuse.org checkout systemsmanagement:saltstack:bundle:testing:Ubuntu2404/saltbundlepy-cython && cd $_
- Create Badge
Refresh
Refresh
Source Files
Filename | Size | Changed |
---|---|---|
Cython-0.29.30.tar.gz | 0002085208 1.99 MB | |
python-Cython-rpmlintrc | 0000000189 189 Bytes | |
saltbundlepy-cython.changes | 0000083462 81.5 KB | |
saltbundlepy-cython.spec | 0000003539 3.46 KB |
Revision 3 (latest revision is 6)
Pablo Suárez Hernández (PSuarezHernandez)
accepted
request 991249
from
Victor Zhestkov (vzhestkov)
(revision 3)
- update to 0.29.30: * Avoid acquiring the GIL at the end of nogil functions. This change was backported in order to avoid generating wrong C code that would trigger C compiler warnings with tracing support enabled. * Function definitions in finally: clauses were not correctly generated. * A case where C-API functions could be called with a live exception set was fixed. * Cython now correctly generates Python methods for both the provided regular and reversed special numeric methods of extension types. * The C union type in pure Python mode mishandled some field names. - update to 0.29.28: * Due to backwards incompatible changes in CPython 3.11a4, the feature flags ``CYTHON_FAST_THREAD_STATE`` and ``CYTHON_USE_EXC_INFO_STACK`` are now disabled in Python 3.11 and later. They are enabled again in Cython 3.0. Patch by David Woods. (Github issue #4610) * A C compiler warning in older PyPy versions was resolved. Patch by Matti Picus. (Github issue #4236) - update to 0.29.27: * The ``cythonize`` command has a new option ``-M`` to generate ``.dep`` dependency files for the compilation unit. This can be used by external build tools to track these dependencies. * Calls to ``range()`` with more than three arguments did not fail. * Some C compiler warnings about missing type struct initialisers in Py3.10 were resolved. * Cython no longer warns about using OpenMP 3.0 features since they are now considered generally available. - update to 0.29.26: * An incompatibility with CPython 3.11.0a3 was resolved. * The ``in`` operator failed on literal lists with starred expressions. * A C compiler warning in PyPy about a missing struct field
Comments 0