summaryrefslogtreecommitdiffstats
path: root/Lib/threading.py
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-05-18 19:46:43 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2018-05-18 19:46:43 (GMT)
commitabde17e663edd6437cc7eb0405fe418449a25d72 (patch)
treeff061fe031a51bdb54e184547db3a0cf67daa312 /Lib/threading.py
parentbef703107d9e5d48e6609f2f037abe0b56081afc (diff)
downloadcpython-abde17e663edd6437cc7eb0405fe418449a25d72.zip
cpython-abde17e663edd6437cc7eb0405fe418449a25d72.tar.gz
cpython-abde17e663edd6437cc7eb0405fe418449a25d72.tar.bz2
bpo-33556: Remove reference to thread module from docstring (GH-6963)
(cherry picked from commit 5634331a76dfe9fbe4b76475e11307a0922d6a15) Co-authored-by: Skip Montanaro <skip.montanaro@gmail.com>
Diffstat (limited to 'Lib/threading.py')
-rw-r--r--Lib/threading.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/threading.py b/Lib/threading.py
index 418116f..bb41456 100644
--- a/Lib/threading.py
+++ b/Lib/threading.py
@@ -1069,7 +1069,7 @@ class Thread:
def ident(self):
"""Thread identifier of this thread or None if it has not been started.
- This is a nonzero integer. See the thread.get_ident() function. Thread
+ This is a nonzero integer. See the get_ident() function. Thread
identifiers may be recycled when a thread exits and another thread is
created. The identifier is available even after the thread has exited.