[issue46364] asyncio subprocess cannot read from /dev/stdin

2022-02-01 Thread xoph
xoph added the comment: Created a PR: https://github.com/python/cpython/pull/30596 It's ready for review. Happy about any feedback! -- ___ Python tracker ___

[issue46364] asyncio subprocess cannot read from /dev/stdin

2022-01-14 Thread xoph
Change by xoph : -- keywords: +patch pull_requests: +28794 stage: -> patch review pull_request: https://github.com/python/cpython/pull/30596 ___ Python tracker ___ ___

[issue46364] asyncio subprocess cannot read from /dev/stdin

2022-01-13 Thread Andrew Svetlov
Andrew Svetlov added the comment: True. Would you make a pull request that uses socketpair on AIX only? A test for desired behavior is required. -- ___ Python tracker ___

[issue46364] asyncio subprocess cannot read from /dev/stdin

2022-01-13 Thread xoph
New submission from xoph : asyncio.create_subprocess_exec and asyncio.create_subprocess_shell fail with "No such device or address" when called on a program that attempts to invoke `/dev/stdin` on Linux. This happens in contrast to the subprocess module and was discussed in the this thread:

[issue46364] asyncio subprocess cannot read from /dev/stdin

2022-01-13 Thread xoph
Change by xoph : -- components: asyncio nosy: asvetlov, xoph, yselivanov priority: normal severity: normal status: open title: asyncio subprocess cannot read from /dev/stdin type: behavior ___ Python tracker