diff options
author | Tim Peters <tim@python.org> | 2013-10-26 01:46:51 (GMT) |
---|---|---|
committer | Tim Peters <tim@python.org> | 2013-10-26 01:46:51 (GMT) |
commit | e5bb0bf04ded8ab623da08164c43059d3c68bd87 (patch) | |
tree | 5b24e6a8d5a627ad3035b717648b9da401dd61be /Misc/NEWS | |
parent | bdb61387b753628c033030989a815b7dc02bde20 (diff) | |
download | cpython-e5bb0bf04ded8ab623da08164c43059d3c68bd87.zip cpython-e5bb0bf04ded8ab623da08164c43059d3c68bd87.tar.gz cpython-e5bb0bf04ded8ab623da08164c43059d3c68bd87.tar.bz2 |
Issue #19399: fix sporadic test_subprocess failure.
Change Thread.join() with a negative timeout to just return. The
behavior isn't documented then, but this restores previous
behavior.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -27,6 +27,8 @@ Core and Builtins Library ------- +- Issue #19399: fix sporadic test_subprocess failure. + - Issue #13234: Fix os.listdir to work with extended paths on Windows. Patch by Santoso Wijaya. |