https://github.com/python/cpython/commit/c6a5cc8f244ee71ce932003366411aacadda8dd0 commit: c6a5cc8f244ee71ce932003366411aacadda8dd0 branch: 3.6 author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com> committer: GitHub <noreply at github.com> date: 2018年05月18日T12:32:12-07: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 bb2556544b07..0ab1e462f0f0 100644 --- a/Lib/threading.py +++ b/Lib/threading.py @@ -1093,7 +1093,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.