From 963818088e17250c06630af9e1f4e909cd24bc48 Mon Sep 17 00:00:00 2001 From: Owain Davies <116417456+OTheDev@users.noreply.github.com> Date: Fri, 10 Mar 2023 19:22:02 +0700 Subject: [PATCH] gh-86509: Add link to Lib/_threading_local.py in threading docs (GH-101824) (cherry picked from commit 53dceb53ade15587b9cfd30c0a0942232517dee9) Co-authored-by: Owain Davies <116417456+OTheDev@users.noreply.github.com> --- Doc/library/threading.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index 47ff74dfc67ff2..565f13ad30bf79 100644 --- a/Doc/library/threading.rst +++ b/Doc/library/threading.rst @@ -251,7 +251,7 @@ The instance's values will be different for separate threads. A class that represents thread-local data. For more details and extensive examples, see the documentation string of the - :mod:`_threading_local` module. + :mod:`_threading_local` module: :source:`Lib/_threading_local.py`. .. _thread-objects: