summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2022-05-16 13:24:19 +0200
committerStefan Behnel <stefan_ml@behnel.de>2022-05-16 13:24:19 +0200
commit60f41054f79859e4dacb796652da12f2c40ff15a (patch)
treeb3eb513a107be8c1cf37658ec5cdd6c187977a12
parentc100f5e8245378aab8555d44f50c695567dc2417 (diff)
downloadcython-60f41054f79859e4dacb796652da12f2c40ff15a.tar.gz
Update changelog.
-rw-r--r--CHANGES.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 1110ab2e3..858002627 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -29,6 +29,14 @@ Bugs fixed
reversed special numeric methods of extension types.
Patch by David Woods. (Github issue #4750)
+* Calling unbound extension type methods without arguments could raise an
+ ``IndexError`` instead of a ``TypeError``.
+ Patch by David Woods. (Github issue #4779)
+
+* Calling unbound ``.__contains__()`` super class methods on some builtin base
+ types could trigger an infinite recusion.
+ Patch by David Woods. (Github issue #4785)
+
* The C union type in pure Python mode mishandled some field names.
Patch by Jordan Brière. (Github issue #4727)