summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2020-04-18 23:19:10 +0200
committerStefan Behnel <stefan_ml@behnel.de>2020-04-18 23:19:10 +0200
commitc116847b3e46383c697b7eaaeaf6fea3a01a55ed (patch)
treed6778a4e09885c1dfdf7b14d273c56729391279c
parent566ecc3b91262cc5318ccf5f5f16e4cd0fd9a789 (diff)
downloadcython-c116847b3e46383c697b7eaaeaf6fea3a01a55ed.tar.gz
Update changelog.
-rw-r--r--CHANGES.rst16
1 files changed, 11 insertions, 5 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 1212da977..55dc91818 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -94,6 +94,11 @@ Features added
C macro automatically when ``numpy`` is imported in the code, to avoid C compiler
warnings about deprecated NumPy C-API usage.
+* ``numpy.import_array`` is automatically called if ``numpy`` has been cimported
+ and it has not been called in the module code. This is intended as a hidden
+ fail-safe so user code should continue to call ``numpy.import_array``.
+ Patch by David Woods. (Github issue #3524)
+
* The builtin ``abs()`` function can now be used on C numbers in nogil code.
Patch by Elliott Sales de Andrade. (Github issue #2748)
@@ -121,6 +126,9 @@ Features added
* The Pythran ``shape`` attribute is supported.
Patch by Serge Guelton. (Github issue #3307)
+* The Cython AST code serialiser class ``CodeWriter`` in ``Cython.CodeWriter``
+ supports more syntax nodes.
+
Bugs fixed
----------
@@ -194,6 +202,9 @@ Bugs fixed
* Memoryviews failed to compile when the ``cache_builtins`` feature was disabled.
Patch by David Woods. (Github issue #3406)
+* C++ ``typeid()`` failed for fused types.
+ Patch by David Woods. (Github issue #3203)
+
Other changes
-------------
@@ -234,11 +245,6 @@ Other changes
* Support for Python 2.6 was removed.
-* ``numpy.import_array`` is automatically called if ``numpy`` has been
- ``cimported`` and it hasn't been called manually. This is intended
- as a hidden fail-safe so user code should continue to call
- ``numpy.import_array``. (Github issue #3524)
-
0.29.17 (2020-0?-??)
====================