summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-10-13 17:27:31 (GMT)
committerGitHub <noreply@github.com>2022-10-13 17:27:31 (GMT)
commit595ef03c7ceb25e63878e2a9231e1b54f9f0d125 (patch)
treea62104639ec43f816d4c2f176b7141ee534f665f /Misc
parentc7761bbc3297539480d1e2799f7f67f0437c24b1 (diff)
downloadcpython-595ef03c7ceb25e63878e2a9231e1b54f9f0d125.zip
cpython-595ef03c7ceb25e63878e2a9231e1b54f9f0d125.tar.gz
cpython-595ef03c7ceb25e63878e2a9231e1b54f9f0d125.tar.bz2
bpo-46364: Use sockets for stdin of asyncio only on AIX (GH-30596)
Signed-off-by: Christoph Hamsen <hamsen.christoph@posteo.de> Co-authored-by: July Tikhonov <july.tikh@gmail.com> (cherry picked from commit c9ed0327a9c741a1808926b409df29467baf303a) Co-authored-by: Christoph Hamsen <37963496+xopham@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2022-01-14-10-49-20.bpo-46364.SzhlU9.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-01-14-10-49-20.bpo-46364.SzhlU9.rst b/Misc/NEWS.d/next/Library/2022-01-14-10-49-20.bpo-46364.SzhlU9.rst
new file mode 100644
index 0000000..d547ffc
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-01-14-10-49-20.bpo-46364.SzhlU9.rst
@@ -0,0 +1 @@
+Restrict use of sockets instead of pipes for stdin of subprocesses created by :mod:`asyncio` to AIX platform only.