summaryrefslogtreecommitdiff
path: root/CHANGES.rst
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2022-10-21 09:07:21 +0200
committerStefan Behnel <stefan_ml@behnel.de>2022-10-26 10:04:24 +0200
commita9f914969f3057b8695bfc6218a1e434d9119447 (patch)
treebf5f5f0086ae201159542d6385068aad205b5c35 /CHANGES.rst
parent1f65318a60660a2c4f07852e1341c1d48e19ea28 (diff)
downloadcython-a9f914969f3057b8695bfc6218a1e434d9119447.tar.gz
Update changelog.
Diffstat (limited to 'CHANGES.rst')
-rw-r--r--CHANGES.rst13
1 files changed, 11 insertions, 2 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 3146736d0..15e01ac39 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -64,6 +64,10 @@ Bugs fixed
* Nesting fused types in other fused types could fail to specialise the inner type.
(Github issue :issue:`4725`)
+* The special methods ``__matmul__``, ``__truediv__``, ``__floordiv__`` failed to type
+ their ``self`` argument.
+ (Github issue :issue:`5067`)
+
* Coverage analysis failed in projects with a separate source subdirectory.
Patch by Sviatoslav Sydorenko and Ruben Vorderman. (Github issue :issue:`3636`)
@@ -78,10 +82,10 @@ Bugs fixed
(Github issue :issue:`5026`)
* Relative imports failed in compiled ``__init__.py`` package modules.
- Patches by Matus Valo. (Github issue :issue:`4941`)
+ Patch by Matus Valo. (Github issue :issue:`3442`)
* Some old usages of the deprecated Python ``imp`` module were replaced with ``importlib``.
- Patches by Matus Valo. (Github issue :issue:`4941`)
+ Patch by Matus Valo. (Github issue :issue:`4640`)
* Invalid and misspelled ``cython.*`` module names were not reported as errors.
(Github issue :issue:`4947`)
@@ -104,6 +108,11 @@ Bugs fixed
Other changes
-------------
+* The undocumented, untested and apparently useless syntax
+ ``from somemodule cimport class/struct/union somename`` was removed. The type
+ modifier is not needed here and a plain ``cimport`` of the name will do.
+ (Github issue :issue:`4904`)
+
* The wheel building process was migrated to use the ``cibuildwheel`` tool.
Patch by Thomas Li. (Github issue :issue:`4736`)