summaryrefslogtreecommitdiff
path: root/CHANGES.rst
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2020-06-17 13:16:48 +0200
committerStefan Behnel <stefan_ml@behnel.de>2020-06-17 13:18:30 +0200
commitad6e273167a9fc81b6c3a6e4bd1b48b41b55f5dc (patch)
treee7c78594a00dc7422b21fa0ac2df30546efe99c8 /CHANGES.rst
parent6933d867cdea2460c922c45702b7e60f3d133c2d (diff)
downloadcython-ad6e273167a9fc81b6c3a6e4bd1b48b41b55f5dc.tar.gz
Re-add "c_api_binop_methods" directive for backwards compatibility after reverting https://github.com/cython/cython/pull/3633 and force it to "False".
Closes #3688.
Diffstat (limited to 'CHANGES.rst')
-rw-r--r--CHANGES.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 1d82fa820..0ac6396c8 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -8,6 +8,9 @@ Cython Changelog
Bugs fixed
----------
+* Fix a regression in 0.29.20 where ``__div__`` failed to be found in extension types.
+ (Github issue #3688)
+
* The deprecated C-API function ``PyUnicode_FromUnicode()`` is no longer used.
Original patch by Inada Naoki. (Github issue #3677)