gh-86509: Add link to Lib/_threading_local.py in threading docs (#101824)

This commit is contained in:
Owain Davies 2023-03-10 19:22:02 +07:00 committed by GitHub
parent cb35882773
commit 53dceb53ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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: