summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_threading.py
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na92@gmail.com>2019-08-12 17:41:08 (GMT)
committerVictor Stinner <vstinner@redhat.com>2019-08-12 17:41:08 (GMT)
commit44046fe4fc7f00a6eb855b33e6a3f953cf5233a5 (patch)
treed5d6a257c9860201c1322ff6676e2296fc0c7a96 /Lib/test/test_threading.py
parentf9590edfeae192ba95aadaee9460dc03a366c51a (diff)
downloadcpython-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.py2
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()