]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-38466: Fix threading.excepthook doc (GH-16891)
authorMiss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 22 Oct 2019 20:44:45 +0000 (13:44 -0700)
committerGitHub <noreply@github.com>
Tue, 22 Oct 2019 20:44:45 +0000 (13:44 -0700)
(cherry picked from commit 91528f40c30717563a478920861c81d18da5bf63)

Co-authored-by: Daniel Baskal <MagnificentUrukHai@users.noreply.github.com>
Doc/library/threading.rst

index eb9da2b911974573f7a437b0ab3ae3290001adbf..f7c82729e51d7d00ec302b36fd4f4fe2c843f1c9 100644 (file)
@@ -62,8 +62,8 @@ This module defines the following functions:
    should be cleared explicitly to break the reference cycle when the
    exception is no longer needed.
 
-   Storing *object* using a custom hook can resurrect it if it is set to an
-   object which is being finalized. Avoid storing *object* after the custom
+   Storing *thread* using a custom hook can resurrect it if it is set to an
+   object which is being finalized. Avoid storing *thread* after the custom
    hook completes to avoid resurrecting objects.
 
    .. seealso::