We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac8eb8f commit 245f528Copy full SHA for 245f528
1 file changed
Doc/library/sys.rst
@@ -1204,8 +1204,8 @@ always available.
1204
1205
Set the system's trace function, which allows you to implement a Python
1206
source code debugger in Python. The function is thread-specific; for a
1207
- debugger to support multiple threads, it must be registered using
1208
- :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`.
1209
1210
Trace functions should have three arguments: *frame*, *event*, and
1211
*arg*. *frame* is the current stack frame. *event* is a string: ``'call'``,
0 commit comments