summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2021-07-13 21:50:03 +0200
committerStefan Behnel <stefan_ml@behnel.de>2021-07-13 21:50:03 +0200
commit06607884c9653da58c9c352dc9a76a3f1d4a02ad (patch)
treebaa468db4991b5837da5bf3f76a76ef1b7d3a50e
parent8dee7f91b29c3eb1574f86eac63ecd1e4a31f993 (diff)
downloadcython-06607884c9653da58c9c352dc9a76a3f1d4a02ad.tar.gz
Update changelog.
-rw-r--r--CHANGES.rst14
1 files changed, 14 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 0358bacfb..2af0d74b6 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -12,11 +12,25 @@ Bugs fixed
C code if the module that imported from them does not use memory views.
Patch by David Woods. (Github issue #1415)
+* Several declarations in ``libcpp.string`` were added and corrected.
+ Patch by Janek Bevendorff. (Github issue #4268)
+
+* Pickling unbound Cython compiled methods failed.
+ Patch by Pierre Glaser. (Github issue #2972)
+
+* The tracing code was adapted to work with CPython 3.10.
+
* The optimised ``in`` operator failed on unicode strings in Py3.9 and later
that were constructed from an external ``wchar_t`` source.
Also, related C compiler warnings about deprecated C-API usage were resolved.
(Github issue #3925)
+* Some compiler crashes were resolved.
+ Patch by David Woods. (Github issues #4214, #2811)
+
+* An incorrect warning about 'unused' generator expressions was removed.
+ (GIthub issue #1699)
+
* The attributes ``gen.gi_frame`` and ``coro.cr_frame`` of Cython compiled
generators and coroutines now return an actual frame object for introspection,
instead of ``None``.