summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorXiang Zhang <angwerzx@126.com>2017-02-27 03:01:30 (GMT)
committerGitHub <noreply@github.com>2017-02-27 03:01:30 (GMT)
commitf3a9faba4bad91286b78b498547de928078f55da (patch)
treea28e1037aa0c99fbf0ece82739f9036b209120a4 /Misc/NEWS
parent1f5639c77f736c18fb5a85b4a1850121e25c788e (diff)
downloadcpython-f3a9faba4bad91286b78b498547de928078f55da.zip
cpython-f3a9faba4bad91286b78b498547de928078f55da.tar.gz
cpython-f3a9faba4bad91286b78b498547de928078f55da.tar.bz2
bpo-29376: Fix assertion error in threading._DummyThread.is_alive() (GH-236)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 283db49..a551127 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -249,6 +249,8 @@ Extension Modules
Library
-------
+- bpo-29376: Fix assertion error in threading._DummyThread.is_alive().
+
- bpo-28624: Add a test that checks that cwd parameter of Popen() accepts
PathLike objects. Patch by Sayan Chowdhury.