summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2020-06-04 12:29:36 +0200
committerStefan Behnel <stefan_ml@behnel.de>2020-06-04 12:29:36 +0200
commit43b30e3b5d460eac1a6007423852b3ec4ce423d0 (patch)
treecc3b17845b3621ff894332ed96b8a473ea3e27b7
parent76048959bdb5ca053a6760b28fb33d2ec524ea24 (diff)
downloadcython-43b30e3b5d460eac1a6007423852b3ec4ce423d0.tar.gz
Update changelog.
-rw-r--r--CHANGES.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index d21dba296..d429b0467 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -8,6 +8,12 @@ Cython Changelog
Bugs fixed
----------
+* 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()`` and ``Py_SET_REFCNT()`` in Py3.9+ to avoid low-level
write access to these object fields.
Patch by Victor Stinner. (Github issue #3639)