Skip to content

Commit c9ed032

Browse files
xophamtifv
andauthored
bpo-46364: Use sockets for stdin of asyncio only on AIX (#30596)
Signed-off-by: Christoph Hamsen <hamsen.christoph@posteo.de> Co-authored-by: July Tikhonov <july.tikh@gmail.com>
1 parent d4b9166 commit c9ed032

File tree

3 files changed

+24
-4
lines changed

3 files changed

+24
-4
lines changed

Lib/asyncio/unix_events.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -800,12 +800,11 @@ class _UnixSubprocessTransport(base_subprocess.BaseSubprocessTransport):
800800

801801
def _start(self, args, shell, stdin, stdout, stderr, bufsize, **kwargs):
802802
stdin_w = None
803-
if stdin == subprocess.PIPE:
804-
# Use a socket pair for stdin, since not all platforms
803+
if stdin == subprocess.PIPE and sys.platform.startswith('aix'):
804+
# Use a socket pair for stdin on AIX, since it does not
805805
# support selecting read events on the write end of a
806806
# socket (which we use in order to detect closing of the
807-
# other end). Notably this is needed on AIX, and works
808-
# just fine on other platforms.
807+
# other end).
809808
stdin, stdin_w = socket.socketpair()
810809
try:
811810
self._proc = subprocess.Popen(

Lib/test/test_asyncio/test_subprocess.py

+20
Original file line numberDiff line numberDiff line change
@@ -427,6 +427,26 @@ async def empty_error():
427427
self.assertEqual(output, None)
428428
self.assertEqual(exitcode, 0)
429429

430+
@unittest.skipIf(sys.platform != 'linux', "Don't have /dev/stdin")
431+
def test_devstdin_input(self):
432+
433+
async def devstdin_input(message):
434+
code = 'file = open("/dev/stdin"); data = file.read(); print(len(data))'
435+
proc = await asyncio.create_subprocess_exec(
436+
sys.executable, '-c', code,
437+
stdin=asyncio.subprocess.PIPE,
438+
stdout=asyncio.subprocess.PIPE,
439+
stderr=asyncio.subprocess.PIPE,
440+
close_fds=False,
441+
)
442+
stdout, stderr = await proc.communicate(message)
443+
exitcode = await proc.wait()
444+
return (stdout, exitcode)
445+
446+
output, exitcode = self.loop.run_until_complete(devstdin_input(b'abc'))
447+
self.assertEqual(output.rstrip(), b'3')
448+
self.assertEqual(exitcode, 0)
449+
430450
def test_cancel_process_wait(self):
431451
# Issue #23140: cancel Process.wait()
432452

Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Restrict use of sockets instead of pipes for stdin of subprocesses created by :mod:`asyncio` to AIX platform only.

0 commit comments

Comments
 (0)