summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2023-05-02 09:14:06 +0200
committerStefan Behnel <stefan_ml@behnel.de>2023-05-02 09:14:06 +0200
commit236e705d644247415baacf0a6d38b6e85379cce1 (patch)
treed71dacd342d4bd7f2e2596a1a8cefe1242ef5b1a
parent4fa1f93b6e9a32bb384400b1dee1da0fe0262eca (diff)
parent6a901e1256d85695bc98808795c4b53badfedfc8 (diff)
downloadcython-236e705d644247415baacf0a6d38b6e85379cce1.tar.gz
Merge branch '0.29.x'
-rw-r--r--CHANGES.rst10
1 files changed, 10 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index c9369f01e..bca8b6aae 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1414,6 +1414,16 @@ Bugs fixed
* Some C compile failures in CPython 3.12 were resolved.
+* A C compile failure in PyPy 3.10 was resolved.
+ Patch by Matti Picus. (Github issue :issue:`5408`)
+
+* Cython modules now use PEP-489 multi-phase init by default in PyPy 3.9 and later.
+ Original patch by Matti Picus. (Github issue :issue:`5413`)
+
+* API header files generated by different Cython versions can now be included in the
+ same C file.
+ (Github issue :issue:`5383`)
+
* Function signatures containing a type like `tuple[()]` could not be printed.
Patch by Lisandro Dalcin. (Github issue :issue:`5355`)