diff options
author | Skip Montanaro <skip.montanaro@gmail.com> | 2018-05-18 18:38:36 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2018-05-18 18:38:36 (GMT) |
commit | 5634331a76dfe9fbe4b76475e11307a0922d6a15 (patch) | |
tree | 3f21c002e48e219af1ee6f98e1ef5b3da7b782b0 /Lib/threading.py | |
parent | bde3e0bf096219234321ca9898fc3d3aed598453 (diff) | |
download | cpython-5634331a76dfe9fbe4b76475e11307a0922d6a15.zip cpython-5634331a76dfe9fbe4b76475e11307a0922d6a15.tar.gz cpython-5634331a76dfe9fbe4b76475e11307a0922d6a15.tar.bz2 |
bpo-33556: Remove reference to thread module from docstring (GH-6963)
Diffstat (limited to 'Lib/threading.py')
-rw-r--r-- | Lib/threading.py | 2 |
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. |