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 /Lib/test/test_threading.py | |
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 'Lib/test/test_threading.py')
-rw-r--r-- | Lib/test/test_threading.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py index 1466d25..7c16974 100644 --- a/Lib/test/test_threading.py +++ b/Lib/test/test_threading.py @@ -422,8 +422,6 @@ class ThreadTests(BaseTestCase): t.setDaemon(True) t.getName() t.setName("name") - with self.assertWarnsRegex(DeprecationWarning, 'use is_alive()'): - t.isAlive() e = threading.Event() e.isSet() threading.activeCount() |