Skip to content
Snippets Groups Projects
Commit 59a5652c0f15 authored by Stefan Behnel's avatar Stefan Behnel
Browse files

Update changelog.

parent 831efe3b1e83
No related branches found
No related tags found
No related merge requests found
......@@ -5,16 +5,6 @@
0.29.20 (2020-0?-??)
====================
Features added
--------------
* Added support for Python binary operator semantics.
One can now define, e.g. both ``__add__`` and ``__radd__`` for cdef classes
as for standard Python classes rather than a single ``__add__`` method where
self can be either the first or second argument. This behavior is guarded
by the ``c_api_binop_methods`` directive.
(Github issue #2056)
Bugs fixed
----------
......@@ -18,6 +8,10 @@
Bugs fixed
----------
* Now uses ``Py_SET_SIZE()`` and ``Py_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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment