summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOwain Davies <116417456+OTheDev@users.noreply.github.com>2023-03-10 12:22:02 (GMT)
committerGitHub <noreply@github.com>2023-03-10 12:22:02 (GMT)
commit53dceb53ade15587b9cfd30c0a0942232517dee9 (patch)
tree8900b9f319c9c70ce232a11f2283f1c4a68478ac
parentcb35882773a3ffc7fe0671e64848f4c926a2d52f (diff)
downloadcpython-53dceb53ade15587b9cfd30c0a0942232517dee9.zip
cpython-53dceb53ade15587b9cfd30c0a0942232517dee9.tar.gz
cpython-53dceb53ade15587b9cfd30c0a0942232517dee9.tar.bz2
gh-86509: Add link to Lib/_threading_local.py in threading docs (#101824)
-rw-r--r--Doc/library/threading.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst
index b352125..83ed480 100644
--- a/Doc/library/threading.rst
+++ b/Doc/library/threading.rst
@@ -272,7 +272,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: