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 f02d1a4 commit 4be0720Copy full SHA for 4be0720
1 file changed
Doc/library/sys.rst
@@ -1171,8 +1171,8 @@ always available.
1171
1172
Set the system's trace function, which allows you to implement a Python
1173
source code debugger in Python. The function is thread-specific; for a
1174
- debugger to support multiple threads, it must be registered using
1175
- :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`.
1176
1177
Trace functions should have three arguments: *frame*, *event*, and
1178
*arg*. *frame* is the current stack frame. *event* is a string: ``'call'``,
0 commit comments