Opened 2 years ago
Closed 2 years ago
#17487 closed enhancement (fixed)
Cython-0.29.33 (Python module)
Reported by: | Bruce Dubbs | Owned by: | blfs-book |
---|---|---|---|
Priority: | normal | Milestone: | 11.3 |
Component: | BOOK | Version: | git |
Severity: | normal | Keywords: | |
Cc: |
Description ¶
New point version.
Change History (3)
comment:1 by , 2 years ago
comment:3 by , 2 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
0.29.33 (2023-01-06)
Features added
cythonize
and
cython
commands have a new option
-M
/
--depfile
to generate
.dep
dependency files for the compilation unit. This can be used by external build tools to track these dependencies. The
cythonize
option was already available in Cython :ref:
0.29.27
.Bugs fixed
const
fused types could not be used with memory views.
wstr
usage was removed in Python 3.12 and later (PEP-623).
PyUnicode_AsUTF8AndSize()
C-API function was missing from the CPython declarations.
Other changes
from somemodule cimport class/struct/union somename
was deprecated in anticipation of its removal in Cython 3. The type modifier is not needed here and a plain
cimport
of the name will do.
cpow
directive of Cython 3.0 is available as a no-op.