diff options
author | Daniel Baskal <MagnificentUrukHai@users.noreply.github.com> | 2019-10-22 20:37:47 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@python.org> | 2019-10-22 20:37:47 (GMT) |
commit | 91528f40c30717563a478920861c81d18da5bf63 (patch) | |
tree | 9985e2b8f23611ea65c772559780137cb66a4f88 /Doc/library/threading.rst | |
parent | 028f7349a0f6eaea0fec31becb587fcdf6e3cb28 (diff) | |
download | cpython-91528f40c30717563a478920861c81d18da5bf63.zip cpython-91528f40c30717563a478920861c81d18da5bf63.tar.gz cpython-91528f40c30717563a478920861c81d18da5bf63.tar.bz2 |
bpo-38466: Fix threading.excepthook doc (GH-16891)
Diffstat (limited to 'Doc/library/threading.rst')
-rw-r--r-- | Doc/library/threading.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index 0489421..905862e 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:: |