summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorNed Deily <nad@python.org>2018-03-27 21:16:49 (GMT)
committerGitHub <noreply@github.com>2018-03-27 21:16:49 (GMT)
commit8534d53333e4e918be82b041754ecd89af519e5b (patch)
tree1b0f52ca4bdb449d0ebc942cb4b6e7cb642d692e /Misc/NEWS.d/next
parent30e507dff465a31901d87df791a2bac40dc88530 (diff)
downloadcpython-8534d53333e4e918be82b041754ecd89af519e5b.zip
cpython-8534d53333e4e918be82b041754ecd89af519e5b.tar.gz
cpython-8534d53333e4e918be82b041754ecd89af519e5b.tar.bz2
bpo-32517: fix test_read_pty_output() hangs on macOS 10.13.2+ (GH-6037) (GH-6113)
test_asyncio hangs indefinitely on macOS 10.13.2+ on `read_pty_output()` using the KqueueSelector. Closing `proto.transport` (as is done in `write_pty_output()`) seems to fix it. (cherry picked from commit 12f74d8608c15cacd9d5786524e2be9ca36f007e) Co-authored-by: Nathan Henrie <n8henrie@users.noreply.github.com> Also, re-enable test_read_pty_output on macOS.
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Tests/2018-03-09-07-05-12.bpo-32517.ugc1iW.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2018-03-09-07-05-12.bpo-32517.ugc1iW.rst b/Misc/NEWS.d/next/Tests/2018-03-09-07-05-12.bpo-32517.ugc1iW.rst
new file mode 100644
index 0000000..43f148f
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2018-03-09-07-05-12.bpo-32517.ugc1iW.rst
@@ -0,0 +1,2 @@
+Fix failing ``test_asyncio`` on macOS 10.12.2+ due to transport of
+``KqueueSelector`` loop was not being closed.