-
-
Notifications
You must be signed in to change notification settings - Fork 32.3k
bpo-32517: fix test_read_pty_output() hangs on macOS 10.13.2+ #6037
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Hello, and thanks for your contribution! I'm a bot set up to make sure that the project can legally accept your contribution by verifying you have signed the PSF contributor agreement (CLA). Unfortunately our records indicate you have not signed the CLA. For legal reasons we need you to sign this before we can look at your contribution. Please follow the steps outlined in the CPython devguide to rectify this issue. Thanks again to your contribution and we look forward to looking at it! |
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.
6e8c000
to
cd38fa5
Compare
…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. (cherry picked from commit 12f74d8) Co-authored-by: Nathan Henrie <[email protected]>
GH-6038 is a backport of this pull request to the 3.7 branch. |
Sorry, @n8henrie and @1st1, I could not cleanly backport this to |
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 12f74d8) Co-authored-by: Nathan Henrie <[email protected]>
…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. (cherry picked from commit 12f74d8) Co-authored-by: Nathan Henrie <[email protected]> Also, re-enable test_read_pty_output on macOS.
… (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 12f74d8) Co-authored-by: Nathan Henrie <[email protected]> Also, re-enable test_read_pty_output on macOS.
test_asyncio hangs indefinitely on macOS 10.13.2+ on
read_pty_output()
using the KqueueSelector. Closing
proto.transport
(as is done inwrite_pty_output()
) seems to fix it.https://bugs.python.org/issue32517