[Python-checkins] Doc: Add link threading.settrace to sys.settrace (GH-13345)

Miss Islington (bot) webhook-mailer at python.org
Fri May 17 05:02:57 EDT 2019


https://github.com/python/cpython/commit/4be0720beb1b4ea778c943c4cb1b6a514e08753d
commit: 4be0720beb1b4ea778c943c4cb1b6a514e08753d
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-05-17T02:02:51-07:00
summary:

Doc: Add link threading.settrace to sys.settrace (GH-13345)

(cherry picked from commit 245f528a92d7748dbd7acf9cba860153c143bbfe)

Co-authored-by: Stefan Hoelzl <stefan.hoelzl at posteo.de>

files:
M Doc/library/sys.rst

diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst
index c2c653e00beb..9a8c2ca0c5d0 100644
--- a/Doc/library/sys.rst
+++ b/Doc/library/sys.rst
@@ -1171,8 +1171,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'``,



More information about the Python-checkins mailing list