summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorNathan Henrie <n8henrie@users.noreply.github.com>2018-03-09 10:43:45 -0700
committerYury Selivanov <yury@magic.io>2018-03-09 12:43:45 -0500
commit12f74d8608c15cacd9d5786524e2be9ca36f007e (patch)
treeb6ca612f3ce434409ac7d2b7c4c67f75f42d6929 /Misc
parentbpo-33016: Fix potential use of uninitialized memory in nt._getfinalpathname ... (diff)
downloadcpython-12f74d8608c15cacd9d5786524e2be9ca36f007e.tar.gz
cpython-12f74d8608c15cacd9d5786524e2be9ca36f007e.tar.bz2
cpython-12f74d8608c15cacd9d5786524e2be9ca36f007e.zip
bpo-32517: fix test_read_pty_output() hangs on macOS 10.13.2+ (GH-6037)
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.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS.d/next/Tests/2018-03-09-07-05-12.bpo-32517.ugc1iW.rst2
2 files changed, 3 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 9403e110675..b2033ee9d3f 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -614,6 +614,7 @@ Thomas Heller
Malte Helmert
Lance Finn Helsten
Jonathan Hendry
+Nathan Henrie
Michael Henry
James Henstridge
Kasun Herath
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 00000000000..43f148f06ec
--- /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.