diff options
author | Miss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-10-22 20:44:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-22 20:44:45 (GMT) |
commit | 6329a56ca7f99075caa95a075024736a90ad2857 (patch) | |
tree | 8afdc1d3870ad24ff7d09a1cec97f9c4588d3a7d /Doc | |
parent | dbcea39ba713cc5b31fa1a243b16a0128c231c98 (diff) | |
download | cpython-6329a56ca7f99075caa95a075024736a90ad2857.zip cpython-6329a56ca7f99075caa95a075024736a90ad2857.tar.gz cpython-6329a56ca7f99075caa95a075024736a90ad2857.tar.bz2 |
bpo-38466: Fix threading.excepthook doc (GH-16891)
(cherry picked from commit 91528f40c30717563a478920861c81d18da5bf63)
Co-authored-by: Daniel Baskal <MagnificentUrukHai@users.noreply.github.com>
Diffstat (limited to 'Doc')
-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 eb9da2b..f7c8272 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:: |