summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na92@gmail.com>2019-01-17 12:14:45 (GMT)
committerVictor Stinner <vstinner@redhat.com>2019-01-17 12:14:45 (GMT)
commit89669ffe10a9db6343f6ee42239e412c8ad96bde (patch)
tree5c525e474b70d00eaf8c22fa818a5ab44d446f62 /Misc
parent97e12996f31f6ada4173e2cd4b6807c98ba379a4 (diff)
downloadcpython-89669ffe10a9db6343f6ee42239e412c8ad96bde.zip
cpython-89669ffe10a9db6343f6ee42239e412c8ad96bde.tar.gz
cpython-89669ffe10a9db6343f6ee42239e412c8ad96bde.tar.bz2
bpo-35283: Add deprecation warning for Thread.isAlive (GH-11454)
Add a deprecated warning for the threading.Thread.isAlive() method.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-01-07-17-17-16.bpo-35283.WClosC.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-01-07-17-17-16.bpo-35283.WClosC.rst b/Misc/NEWS.d/next/Library/2019-01-07-17-17-16.bpo-35283.WClosC.rst
new file mode 100644
index 0000000..7118652
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-01-07-17-17-16.bpo-35283.WClosC.rst
@@ -0,0 +1,2 @@
+Add a deprecated warning for the :meth:`threading.Thread.isAlive` method.
+Patch by Dong-hee Na.