summaryrefslogtreecommitdiff
path: root/CHANGES.rst
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2019-01-18 15:33:19 +0100
committerStefan Behnel <stefan_ml@behnel.de>2021-04-28 13:14:41 +0200
commitcb53a50cf30aa75cbc98c31292a5e5a914c3f4a4 (patch)
tree5f92eda51bec719818e041a827460600db8129dd /CHANGES.rst
parent2dd3be0a8ca25c1d484f70d4390e4a44952aecd1 (diff)
downloadcython-cb53a50cf30aa75cbc98c31292a5e5a914c3f4a4.tar.gz
Implement "gen.gi_frame" and "coro.cr_frame" attributes on generators and coroutines that return an inspectable (although otherwise dead) frame object.
Closes https://github.com/cython/cython/issues/2306
Diffstat (limited to 'CHANGES.rst')
-rw-r--r--CHANGES.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 6b32ac5f3..0358bacfb 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -17,6 +17,11 @@ Bugs fixed
Also, related C compiler warnings about deprecated C-API usage were resolved.
(Github issue #3925)
+* 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``.
+ (Github issue #2306)
+
0.29.23 (2021-04-14)
====================