From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 18 May 2018 19:46:43 +0000 (-0700) Subject: bpo-33556: Remove reference to thread module from docstring (GH-6963) X-Git-Tag: v3.7.0b5~87 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=abde17e663edd6437cc7eb0405fe418449a25d72;p=thirdparty%2FPython%2Fcpython.git bpo-33556: Remove reference to thread module from docstring (GH-6963) (cherry picked from commit 5634331a76dfe9fbe4b76475e11307a0922d6a15) Co-authored-by: Skip Montanaro --- 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 @@ 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.