Skip to content

Commit 256f03b

Browse files
Correct minor gramatical mistake in sys.settrace doc (GH-15637)
(cherry picked from commit 3038e87) Co-authored-by: Andre Delfino <[email protected]>
1 parent 16af39a commit 256f03b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Doc/library/sys.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1185,7 +1185,8 @@ always available.
11851185

11861186
The trace function is invoked (with *event* set to ``'call'``) whenever a new
11871187
local scope is entered; it should return a reference to a local trace
1188-
function to be used that scope, or ``None`` if the scope shouldn't be traced.
1188+
function to be used for the new scope, or ``None`` if the scope shouldn't be
1189+
traced.
11891190

11901191
The local trace function should return a reference to itself (or to another
11911192
function for further tracing in that scope), or ``None`` to turn off tracing

0 commit comments

Comments
 (0)