https://github.com/python/cpython/commit/2aeae241ca882d4833ab8c2e3c88706cc4a4d388 commit: 2aeae241ca882d4833ab8c2e3c88706cc4a4d388 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: ZeroIntensity <[email protected]> date: 2025-08-22T14:25:55-04:00 summary:
[3.13] gh-91116: Add hyperlink from `sys.settrace` to frame objects (GH-138062) (GH-138069) gh-91116: Add hyperlink from `sys.settrace` to frame objects (GH-138062) (cherry picked from commit f278afcabf1a1c4162a0bfd4912662517d5d04a2) Co-authored-by: Krishna Chaitanya <[email protected]> files: M Doc/library/sys.rst diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 34a37490be022b..66035e583b6014 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -1626,7 +1626,7 @@ always available. Unless explicitly noted otherwise, all variables are read-only :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'``, + *arg*. *frame* is the :ref:`current stack frame <frame-objects>`. *event* is a string: ``'call'``, ``'line'``, ``'return'``, ``'exception'`` or ``'opcode'``. *arg* depends on the event type. _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
