Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
245f528a
Commit
245f528a
authored
May 17, 2019
by
Stefan Hoelzl
Committed by
Stéphane Wirtel
May 17, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Doc: Add link threading.settrace to sys.settrace (GH-13345)
parent
ac8eb8f3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Doc/library/sys.rst
Doc/library/sys.rst
+2
-2
No files found.
Doc/library/sys.rst
View file @
245f528a
...
...
@@ -1204,8 +1204,8 @@ always available.
Set the system's trace function, which allows you to implement a Python
source code debugger in Python. The function is thread-specific; for a
debugger to support multiple threads, it must
be registered
using
:func:`settrace` for each thread being debugged.
debugger to support multiple threads, it must
register a trace function
using
:func:`settrace` for each thread being debugged
or use :func:`threading.settrace`
.
Trace functions should have three arguments: *frame*, *event*, and
*arg*. *frame* is the current stack frame. *event* is a string: ``'call'``,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment