]> granicus.if.org Git - python/commitdiff
bpo-33556: Remove reference to thread module from docstring (GH-6963)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 18 May 2018 19:46:43 +0000 (12:46 -0700)
committerZachary Ware <zachary.ware@gmail.com>
Fri, 18 May 2018 19:46:43 +0000 (14:46 -0500)
(cherry picked from commit 5634331a76dfe9fbe4b76475e11307a0922d6a15)

Co-authored-by: Skip Montanaro <skip.montanaro@gmail.com>
Lib/threading.py

index 418116faceb755b7a670fdbed99d352ee2c45351..bb41456fb1410c228fff19667f5351c04304eb22 100644 (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.