Changelog History
Page 1
-
v3.0.0
April 23, 2020π Features added
Cython functions now use the PEP-590 vectorcall protocol in Py3.7+. Patch by Jeroen Demeyer. (Github issue #2263)
π Unicode identifiers are supported in Cython code (PEP 3131). Patch by David Woods. (Github issue #2601)
π Unicode module names and imports are supported. Patch by David Woods. (Github issue #3119)
π Annotations are no longer parsed, keeping them as strings following PEP-563. Patch by David Woods. (Github issue #3285)
Preliminary support for the CPython's
Py_LIMITED_API
(stable ABI) is available by setting theCYTHON_LIMITED_API
C macro. Note that the support is currently in an early stage and many features do not yet work. Patches by Eddie Elizondo and David Woods. (Github issues #3223, #3311, #3501)The dispatch to fused functions is now linear in the number of arguments, which makes it much faster, often 2x or more, and several times faster for larger fused types with many specialisations. Patch by will-ca. (Github issue #1385)
with gil/nogil
statements can be conditional based on compile-time constants, e.g. fused type checks. Patch by Noam Hershtig. (Github issue #2579)const
can be used together with fused types. Patch by Thomas Vincent. (Github issue #1772)Reimports of already imported modules are substantially faster. (Github issue #2854)
π Positional-only arguments are supported in Python functions (PEP-570). Patch by Josh Tobin. (Github issue #2915)
π The
volatile
C modifier is supported in Cython code. Patch by Jeroen Demeyer. (Github issue #1667)@cython.trashcan(True)
can be used on an extension type to enable the CPython trashcan. This allows deallocating deeply recursive objects without overflowing the stack. Patch by Jeroen Demeyer. (Github issue #2842)Inlined properties can be defined for external extension types. Patch by Matti Picus. (Github issue #2640)
The
str()
builtin now callsPyObject_Str()
instead of going through a Python call. Patch by William Ayd. (Github issue #3279)String concatenation can now happen in place if possible, by extending the existing string rather than always creating a new one. Patch by David Woods. (Github issue #3453)
Multiplication of Python numbers with small constant integers is faster. (Github issue #2808)
Some list copying is avoided internally when a new list needs to be created but we already have a fresh one. (Github issue #3494)
Extension types that do not need their own
tp_new
implementation (because they have no object attributes etc.) directly inherit the implementation of their parent type if possible. (Github issue #1555)The attributes
gen.gi_frame
andcoro.cr_frame
of Cython compiled generators and coroutines now return an actual frame object for introspection. (Github issue #2306)Several declarations in
cpython.*
,libc.*
andlibcpp.*
were added. Patches by Jeroen Demeyer, Matthew Edwards, Chris Gyurgyik, Jerome Kieffer and Zackery Spytz. (Github issues #3468, #3332, #3202, #3188, #3179, #2891, #2826, #2713)π Deprecated NumPy API usages were removed from
numpy.pxd
. Patch by Matti Picus. (Github issue #3365)cython.inline()
now sets theNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION
C macro automatically whennumpy
is imported in the code, to avoid C compiler warnings about deprecated NumPy C-API usage.The builtin
abs()
function can now be used on C numbers in nogil code. Patch by Elliott Sales de Andrade. (Github issue #2748)0οΈβ£ PEP-479 (
generator_stop
) is now enabled by default with language level 3. (Github issue #2580)π The
cython.view.array
type supports inheritance. Patch by David Woods. (Github issue #3413)Code annotation accepts a new debugging argument
--annotate-fullc
that will include the complete syntax highlighted C file in the HTML output. (Github issue #2855)β
--no-capture
added toruntests.py
to prevent stdout/stderr capturing during srctree tests. Patch by Matti Picus. (Github issue #2701)π
--no-docstrings
option added tocythonize
script. Original patch by mo-han. (Github issue #2889)π
cygdb
gives better error messages when it fails to initialise the Python runtime support in gdb. Patch by Volker Weissmann. (Github issue #3489)π The Pythran
shape
attribute is supported. Patch by Serge Guelton. (Github issue #3307)
π Bugs fixed
The unicode methods
.upper()
,.lower()
and.title()
were incorrectly optimised for single character input values and only returned the first character if multiple characters should have been returned. They now use the original Python methods again.Fused argument types were not correctly handled in type annotations and
cython.locals()
. Patch by David Woods. (Github issues #3391, #3142)Diverging from the usual behaviour,
len(memoryview)
,len(char*)
andlen(Py_UNICODE*)
returned an unsignedsize_t
value. They now return a signedPy_ssize_t
, like other usages oflen()
.Nested dict literals in function call kwargs could incorrectly raise an error about duplicate keyword arguments, which are allowed when passing them from dict literals. (Github issue #2963)
Item access (subscripting) with integer indices/keys always tried the Sequence protocol before the Mapping protocol, which diverged from Python semantics. It now passes through the Mapping protocol first when supported. (Github issue #1807)
Name lookups in class bodies no longer go through an attribute lookup. Patch by Jeroen Demeyer. (Github issue #3100)
Broadcast assignments to a multi-dimensional memory view slice could end up in the wrong places when the underlying memory view is known to be contiguous but the slice is not. (Github issue #2941)
Pickling unbound methods of Python classes failed. Patch by Pierre Glaser. (Github issue #2972)
The
Py_hash_t
type failed to accept arbitrary "index" values. (Github issue #2752)The first function line number of functions with decorators pointed to the signature line and not the first decorator line, as in Python. Patch by Felix KohlgrΓΌber. (Github issue #2536)
Constant integer expressions that used a negative exponent were evaluated as integer 0 instead of the expected float value. Patch by KryΕ‘tof PilnΓ‘Δek. (Github issue #2133)
The
cython.declare()
andcython.cast()
functions could fail in pure mode. Patch by Dmitry Shesterkin. (Github issue #3244)__doc__
was not available inside of the class body during class creation. (Github issue #1635)Setting
language_level=2
in a file did not work iflanguage_level=3
was enabled globally before. Patch by Jeroen Demeyer. (Github issue #2791)__init__.pyx
files were not always considered as package indicators. (Github issue #2665)Compiling package
__init__
files could fail under Windows due to an undefined export symbol. (Github issue #2968)β A C compiler cast warning was resolved. Patch by Michael Buesch. (Github issue #2775)
Binding staticmethods of Cython functions were not behaving like Python methods. Patch by Jeroen Demeyer. (Github issue #3106, #3102)
Memoryviews failed to compile when the
cache_builtins
feature was disabled. Patch by David Woods. (Github issue #3406)
Other changes
0οΈβ£ The default language level was changed to
3str
, i.e. Python 3 semantics, but withstr
literals (also in Python 2.7). This is a backwards incompatible change from the previous default of Python 2 semantics. The previous behaviour is available through the directivelanguage_level=2
. (Github issue #2565)Cython no longer generates
__qualname__
attributes for classes in Python 2.x since they are problematic there and not correctly maintained for subclasses. Patch by Jeroen Demeyer. (Github issue #2772)π¨ Source file fingerprinting now uses SHA-1 instead of MD5 since the latter tends to be slower and less widely supported these days. (Github issue #2790)
π The long deprecated include files
python_*
,stdio
,stdlib
andstl
inCython/Includes/Deprecated/
were removed. Use thelibc.*
andcpython.*
pxd modules instead. Patch by Jeroen Demeyer. (Github issue #2904)The search order for include files was changed. Previously it was
include_directories
,Cython/Includes
,sys.path
. Now it isinclude_directories
,sys.path
,Cython/Includes
. This was done to allow third-party*.pxd
files to override the ones in Cython. Patch by Matti Picus. (Github issue #2905)π The command line parser was rewritten and modernised using
argparse
. Patch by Egor Dranischnikow. (Github issue #2952, #3001)π Dotted filenames for qualified module names (
pkg.mod.pyx
) are deprecated. Use the normal Python package directory layout instead. (Github issue #2686)π§ Binary Linux wheels now follow the manylinux2010 standard. Patch by Alexey Stepanov. (Github issue #3355)
π Support for Python 2.6 was removed.
-
v3.0.a5
May 19, 2020 -
v3.0.a4
May 06, 2020 -
v3.0.a3
April 27, 2020 -
v3.0.a2
April 23, 2020 -
v3.0.a1
April 12, 2020 -
v0.29.22
π Features added
- Some declarations were added to the provided pxd includes. Patches by Zackery Spytz and John Kirkham. (Github issues #3811, #3882, #3899, #3901)
π Bugs fixed
A crash when calling certain functions in Py3.9 and later was resolved. (Github issue #3917)
const
memory views of structs failed to compile. (Github issue #2251)const
template declarations could not be nested. Patch by Ashwin Srinath. (Github issue #1355)Casts to memory views failed for fused dtypes. Patch by David Woods. (Github issue #3881)
repr()
was assumed to returnstr
instead ofunicode
withlanguage_level=3
. (Github issue #3736)Cython no longer validates the ABI size of the NumPy classes it compiled against. See the discussion in https://github.com/numpy/numpy/pull/432
β A C compiler warning about enum value casting was resolved in GCC. (Github issue #2749)
Coverage reporting in the annotated HTML file failed in Py3.9. Patch by Nick Pope. (Github issue #3865)
The embedding code now reports Python errors as exit status.
Long type declarations could lead to (harmless) random changes in the C file when used in auto-generated Python wrappers or pickled classes.
-
v0.29.21
July 09, 2020π Bugs fixed
Fix a regression in 0.29.20 where
__div__
failed to be found in extension types. (Github issue #3688)π Fix a regression in 0.29.20 where a call inside of a finally clause could fail to compile. Patch by David Woods. (Github issue #3712)
Zero-sized buffers could fail to validate as C/Fortran-contiguous. Patch by Clemens Hofreither. (Github issue #2093)
exec()
did not allow recent Python syntax features in Py3.8+ due to https://bugs.python.org/issue35975. (Github issue #3695)Binding staticmethods of Cython functions were not behaving like Python methods in Py3. Patch by Jeroen Demeyer and MichaΕ GΓ³rny. (Github issue #3106)
Pythran calls to NumPy methods no longer generate useless method lookup code.
The
PyUnicode_GET_LENGTH()
macro was missing from thecpython.*
declarations. Patch by Thomas Caswell. (Github issue #3692)π The deprecated
PyUnicode_*()
C-API functions are no longer used, except for Unicode strings that contain lone surrogates. Unicode strings that contain non-BMP characters or surrogate pairs now generate different C code on 16-bit Python 2.x Unicode deployments (such as MS-Windows). Generating the C code on Python 3.x is recommended in this case. Original patches by Inada Naoki and Victor Stinner. (Github issues #3677, #3721, #3697)Some template parameters were missing from the C++
std::unordered_map
declaration. Patch by will. (Github issue #3685)Several internal code generation issues regarding temporary variables were resolved. (Github issue #3708)
-
v0.29.20
June 10, 2020π Bugs fixed
Nested try-except statements with multiple
return
statements could crash due to incorrect deletion of theexcept as
target variable. (Github issue #3666)The
@classmethod
decorator no longer rejects unknown input from other decorators. Patch by David Woods. (Github issue #3660)Fused types could leak into unrelated usages. Patch by David Woods. (Github issue #3642)
Now uses
Py_SET_SIZE()
andPy_SET_REFCNT()
in Py3.9+ to avoid low-level write access to these object fields. Patch by Victor Stinner. (Github issue #3639)The built-in
abs()
function could lead to undefined behaviour when used on the negative-most value of a signed C integer type. Patch by Serge Guelton. (Github issue #1911)Usages of
sizeof()
andtypeid()
on uninitialised variables no longer produce a warning. Patch by Celelibi. (Github issue #3575)The C++
typeid()
function was allowed in C mode. Patch by Celelibi. (Github issue #3637)The error position reported for errors found in f-strings was misleading. (Github issue #3674)
The new
c_api_binop_methods
directive was added for forward compatibility, but can only be set to True (the current default value). It can be disabled in Cython 3.0.
-
v0.29.19
May 20, 2020π Bugs fixed
π A typo in Windows specific code in 0.29.18 was fixed that broke "libc.math". (Github issue #3622)
β A platform specific test failure in 0.29.18 was fixed. Patch by smutch. (Github issue #3620)