[Python-checkins] bpo-33556: Remove reference to thread module from docstring (GH-6963)

Zachary Ware webhook-mailer at python.org
Fri May 18 14:38:43 EDT 2018


https://github.com/python/cpython/commit/5634331a76dfe9fbe4b76475e11307a0922d6a15
commit: 5634331a76dfe9fbe4b76475e11307a0922d6a15
branch: master
author: Skip Montanaro <skip.montanaro at gmail.com>
committer: Zachary Ware <zachary.ware at gmail.com>
date: 2018-05-18T13:38:36-05:00
summary:

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

files:
M Lib/threading.py

diff --git a/Lib/threading.py b/Lib/threading.py
index 418116faceb7..bb41456fb141 100644
--- a/Lib/threading.py
+++ b/Lib/threading.py
@@ -1069,7 +1069,7 @@ def name(self, name):
     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.
 



More information about the Python-checkins mailing list