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

Zachary Ware webhook-mailer at python.org
Fri May 18 15:46:53 EDT 2018


https://github.com/python/cpython/commit/abde17e663edd6437cc7eb0405fe418449a25d72
commit: abde17e663edd6437cc7eb0405fe418449a25d72
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: Zachary Ware <zachary.ware at gmail.com>
date: 2018-05-18T14:46:43-05:00
summary:

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

(cherry picked from commit 5634331a76dfe9fbe4b76475e11307a0922d6a15)

Co-authored-by: Skip Montanaro <skip.montanaro at gmail.com>

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