We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfc8619 commit ba0d3edCopy full SHA for ba0d3ed
2 files changed
Doc/whatsnew/3.14.rst
@@ -2981,6 +2981,11 @@ New features in the C API
2981
as arguments to C API functions.
2982
(Contributed by Sam Gross in :gh:`133164`.)
2983
2984
+* Add :c:func:`PyUnstable_ThreadState_SetStack` and
2985
+ :c:func:`PyUnstable_ThreadState_ResetStack` functions to set the stack base
2986
+ address and stack size of a Python thread state.
2987
+ (Contributed by Victor Stinner in :gh:`139653`.)
2988
+
2989
2990
Limited C API changes
2991
---------------------
Misc/NEWS.d/next/C_API/2025-10-06-22-17-47.gh-issue-139653.6-1MOd.rst
@@ -0,0 +1,3 @@
1
+Add :c:func:`PyUnstable_ThreadState_SetStack` and
2
+:c:func:`PyUnstable_ThreadState_ResetStack` functions to set the stack base
3
+address and stack size of a Python thread state. Patch by Victor Stinner.
0 commit comments