diff options
author | Dong-hee Na <donghee.na92@gmail.com> | 2019-08-12 17:41:08 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2019-08-12 17:41:08 (GMT) |
commit | 44046fe4fc7f00a6eb855b33e6a3f953cf5233a5 (patch) | |
tree | d5d6a257c9860201c1322ff6676e2296fc0c7a96 /Doc/whatsnew | |
parent | f9590edfeae192ba95aadaee9460dc03a366c51a (diff) | |
download | cpython-44046fe4fc7f00a6eb855b33e6a3f953cf5233a5.zip cpython-44046fe4fc7f00a6eb855b33e6a3f953cf5233a5.tar.gz cpython-44046fe4fc7f00a6eb855b33e6a3f953cf5233a5.tar.bz2 |
bpo-37804: Remove the deprecated method threading.Thread.isAlive() (GH-15225)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.9.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index 61d9e74..f09e09c 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -186,6 +186,10 @@ Removed removed. They were deprecated since Python 3.7. (Contributed by Victor Stinner in :issue:`37320`.) +* The :meth:`~threading.Thread.isAlive()` method of :class:`threading.Thread` + has been removed. It was deprecated since Python 3.8. + Use :meth:`~threading.Thread.is_alive()` instead. + (Contributed by Dong-hee Na in :issue:`37804`.) Porting to Python 3.9 ===================== |