From: Daniel Baskal Date: Tue, 22 Oct 2019 20:37:47 +0000 (+0300) Subject: bpo-38466: Fix threading.excepthook doc (GH-16891) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=91528f40c30717563a478920861c81d18da5bf63;p=python bpo-38466: Fix threading.excepthook doc (GH-16891) --- diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index 0489421cdf..905862e774 100644 --- a/Doc/library/threading.rst +++ b/Doc/library/threading.rst @@ -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::