8000 gh-93503: Document the new tracing/profiling APIs in the What's new document by pablogsal · Pull Request #96681 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-93503: Document the new tracing/profiling APIs in the What's new document #96681

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Sep 13, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Misc/NEWS.d/next/C API/2022-06-06-16-04-14.gh-issue-93503.MHJT…
…u8.rst

Co-authored-by: Victor Stinner <vstinner@python.org>
  • Loading branch information
pablogsal and vstinner authored Sep 13, 2022
commit 7847e780283028c3e3312086c4f3a29aeb29377d
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Add two new public functions to the public C-API,
:c:func:`PyEval_SetProfileAllThreads` and :c:func:`PyEval_SetTraceAllThreads`,
that allow to set tracking and profiling functions in all running threads in
that allow to set tracing and profiling functions in all running threads in
addition to the calling one. Also, two analogous functions to the
:mod:`threading` module (:func:`threading.setprofile_all_threads` and
:func:`threading.settrace_all_threads`) that allow to do the same from Python.
Expand Down
0