bpo-33556: Remove reference to thread module from docstring (GH-6963)

(cherry picked from commit 5634331a76)

Co-authored-by: Skip Montanaro <skip.montanaro@gmail.com>
This commit is contained in:
Miss Islington (bot) 2018-05-18 12:46:43 -07:00 committed by Zachary Ware
parent bef703107d
commit abde17e663

View file

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