Commit 4dd7c18d authored by Stefan Behnel's avatar Stefan Behnel

Merge branch '0.29.x'

parents d0d36736 e9c0ae4b
...@@ -210,6 +210,10 @@ Bugs fixed ...@@ -210,6 +210,10 @@ Bugs fixed
implemented functions. implemented functions.
Patch by David Woods. (Github issue #3384) 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. * Using C functions as temporary values lead to invalid C code.
Original patch by David Woods. (Github issue #3418) Original patch by David Woods. (Github issue #3418)
...@@ -225,8 +229,11 @@ Bugs fixed ...@@ -225,8 +229,11 @@ Bugs fixed
* The ``_Py_PyAtExit()`` function in ``cpython.pylifecycle`` was misdeclared. * The ``_Py_PyAtExit()`` function in ``cpython.pylifecycle`` was misdeclared.
Patch by Zackery Spytz. (Github issue #3382) Patch by Zackery Spytz. (Github issue #3382)
* The matrix multiplication functions in ``cpython.number`` were missing. * Several missing declarations in ``cpython.*`` were added.
Patch by Zackery Spytz. (Github issue #3421) 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. * Avoid "undeclared" warning about automatically generated pickle methods.
Patch by David Woods. (Github issue #3353) Patch by David Woods. (Github issue #3353)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment