summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
author依云 <lilydjwg@gmail.com>2019-05-29 06:50:59 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-05-29 06:50:59 (GMT)
commit744c08a9c75a1a53b7a6521fcee3e7c513919ff9 (patch)
tree432a13057b4f1031536f30a06ca6618f85d102b4 /Misc/NEWS.d/next
parente1f95e77e0647aff602e0660ba3c282b71045875 (diff)
downloadcpython-744c08a9c75a1a53b7a6521fcee3e7c513919ff9.zip
cpython-744c08a9c75a1a53b7a6521fcee3e7c513919ff9.tar.gz
cpython-744c08a9c75a1a53b7a6521fcee3e7c513919ff9.tar.bz2
bpo-35246: fix support for path-like args in asyncio subprocess (GH-13628)
Drop isinstance checks from create_subprocess_exec function and let subprocess module do them. https://bugs.python.org/issue35246 https://bugs.python.org/issue35246
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Library/2019-05-28-23-17-35.bpo-35246.oXT21d.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-05-28-23-17-35.bpo-35246.oXT21d.rst b/Misc/NEWS.d/next/Library/2019-05-28-23-17-35.bpo-35246.oXT21d.rst
new file mode 100644
index 0000000..39d4469
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-05-28-23-17-35.bpo-35246.oXT21d.rst
@@ -0,0 +1 @@
+Make :func:`asyncio.create_subprocess_exec` accept path-like arguments.