summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-09-23 13:40:15 -0700
committerPablo Galindo <pablogsal@gmail.com>2021-09-29 12:30:38 +0100
commit78184fa6b0e6129203673e425718e08f5edb6e2e (patch)
tree7debb5592e206b6b401b9343bccd29104b78de61
parentdb3ac4899993271c1c21432dea97de8ae5df5b9d (diff)
downloadcpython-git-78184fa6b0e6129203673e425718e08f5edb6e2e.tar.gz
bpo-43760: Document PyThreadState.use_tracing removal (GH-28527) (GH-28529)
(cherry picked from commit f4ccb79d52ee726d58bbb038ea98b4deec52001d) Co-authored-by: Victor Stinner <vstinner@python.org>
-rw-r--r--Doc/whatsnew/3.10.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst
index d38185b126..e76c761a6d 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`.)