]> granicus.if.org Git - python/commitdiff
bpo-33556: Remove reference to thread module from docstring (GH-6963)
authorSkip Montanaro <skip.montanaro@gmail.com>
Fri, 18 May 2018 18:38:36 +0000 (13:38 -0500)
committerZachary Ware <zachary.ware@gmail.com>
Fri, 18 May 2018 18:38:36 +0000 (13:38 -0500)
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.