summaryrefslogtreecommitdiff
path: root/CHANGES.rst
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2020-05-15 11:07:30 +0200
committerStefan Behnel <stefan_ml@behnel.de>2020-05-15 11:07:30 +0200
commit7a974e4e8b2d5e312a8d3c9c4bf1ff8da7f59c8a (patch)
treebf93a164bd2d07dc26b4a38aa1485450ec59b71e /CHANGES.rst
parent67a9e5725c2cbea63f20c1db5a1f689b2991ad81 (diff)
downloadcython-7a974e4e8b2d5e312a8d3c9c4bf1ff8da7f59c8a.tar.gz
Update changelog.
Diffstat (limited to 'CHANGES.rst')
-rw-r--r--CHANGES.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 4b312c6d0..ac64f3c9e 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -16,6 +16,10 @@ Bugs fixed
* Error handling in ``cython.array`` creation was improved to avoid calling
C-API functions with an error held.
+* Memory view slicing generated unused error handling code which could negatively
+ impact the C compiler optimisations for parallel OpenMP code etc.
+ (Github issue #2987)
+
* Complex buffer item types of structs of arrays could fail to validate.
Patch by Leo and smutch. (Github issue #1407)