Correct minor gramatical mistake in sys.settrace doc (GH-15637)

(cherry picked from commit 3038e87ba8)

Co-authored-by: Andre Delfino <adelfino@gmail.com>
This commit is contained in:
Miss Islington (bot) 2019-09-05 04:17:41 -07:00 committed by GitHub
parent f5649bfe76
commit 7eaeddad75
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1276,7 +1276,8 @@ always available.
The trace function is invoked (with *event* set to ``'call'``) whenever a new
local scope is entered; it should return a reference to a local trace
function to be used that scope, or ``None`` if the scope shouldn't be traced.
function to be used for the new scope, or ``None`` if the scope shouldn't be
traced.
The local trace function should return a reference to itself (or to another
function for further tracing in that scope), or ``None`` to turn off tracing