]> 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:32:12 +0000 (12:32 -0700)
committerGitHub <noreply@github.com>
Fri, 18 May 2018 19:32:12 +0000 (12:32 -0700)
(cherry picked from commit 5634331a76dfe9fbe4b76475e11307a0922d6a15)

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

index bb2556544b07814608d0e6b23a70045139810ebd..0ab1e462f0f0a80adc4ea4635f9807f19b6b405d 100644 (file)
@@ -1093,7 +1093,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.