summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2020-03-21 16:47:54 +0100
committerStefan Behnel <stefan_ml@behnel.de>2020-03-21 16:47:54 +0100
commite9c0ae4b5ea173fca8f65d79ee990d892bff04da (patch)
tree22b8cfe5309035b98b2791bfeca4196cae80cdab
parent6642d167837ebf03f31cd4298f3850b851441902 (diff)
downloadcython-e9c0ae4b5ea173fca8f65d79ee990d892bff04da.tar.gz
Update changelog.
-rw-r--r--CHANGES.rst11
1 files changed, 9 insertions, 2 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 4c748d6a6..cfd4a215c 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -21,6 +21,10 @@ Bugs fixed
implemented functions.
Patch by David Woods. (Github issue #3384)
+* Valid Python object concatenation of (iterable) strings to non-strings
+ could fail with an exception.
+ Patch by David Woods. (Github issue #3433)
+
* Using C functions as temporary values lead to invalid C code.
Original patch by David Woods. (Github issue #3418)
@@ -36,8 +40,11 @@ Bugs fixed
* The ``_Py_PyAtExit()`` function in ``cpython.pylifecycle`` was misdeclared.
Patch by Zackery Spytz. (Github issue #3382)
-* The matrix multiplication functions in ``cpython.number`` were missing.
- Patch by Zackery Spytz. (Github issue #3421)
+* Several missing declarations in ``cpython.*`` were added.
+ Patches by Zackery Spytz. (Github issue #3421, #3411, #3402)
+
+* A declaration for ``libc.math.fpclassify()`` was added.
+ Patch by Zackery Spytz. (Github issue #2514)
* Avoid "undeclared" warning about automatically generated pickle methods.
Patch by David Woods. (Github issue #3353)