diff options
author | Victor Stinner <vstinner@python.org> | 2021-09-23 14:38:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-23 14:38:31 (GMT) |
commit | f4ccb79d52ee726d58bbb038ea98b4deec52001d (patch) | |
tree | 5be0543c797d29c2761d695121b659fde6758dee /Doc/whatsnew/3.10.rst | |
parent | ec7ffa4b5b262369f726a54e145e9c03eaeb4c1a (diff) | |
download | cpython-f4ccb79d52ee726d58bbb038ea98b4deec52001d.zip cpython-f4ccb79d52ee726d58bbb038ea98b4deec52001d.tar.gz cpython-f4ccb79d52ee726d58bbb038ea98b4deec52001d.tar.bz2 |
bpo-43760: Document PyThreadState.use_tracing removal (GH-28527)
Diffstat (limited to 'Doc/whatsnew/3.10.rst')
-rw-r--r-- | Doc/whatsnew/3.10.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst index d1a1cb4..4aa0cd4 100644 --- a/Doc/whatsnew/3.10.rst +++ b/Doc/whatsnew/3.10.rst @@ -2305,3 +2305,6 @@ Removed These functions were undocumented, excluded from the limited C API, and were only used internally by the compiler. (Contributed by Victor Stinner in :issue:`43244`.) + +* The ``PyThreadState.use_tracing`` member has been removed to optimize Python. + (Contributed by Mark Shannon in :issue:`43760`.) |