summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAnders Lorentsen <Phaqui@gmail.com>2018-01-30 07:27:28 (GMT)
committerGregory P. Smith <greg@krypto.org>2018-01-30 07:27:28 (GMT)
commitdd42cb71f2cb02f3a32f016137b12a146bc0d0e2 (patch)
treed37a2ca8d77a012cae351b5f8c6654157a706bee /Misc
parent14e976e00e65bf343ba0fca016c3c9132a843daf (diff)
downloadcpython-dd42cb71f2cb02f3a32f016137b12a146bc0d0e2.zip
cpython-dd42cb71f2cb02f3a32f016137b12a146bc0d0e2.tar.gz
cpython-dd42cb71f2cb02f3a32f016137b12a146bc0d0e2.tar.bz2
bpo-31961: subprocess now accepts path-like args (GH-4329)
Allow os.PathLike args in subprocess APIs.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2017-11-08-03-38-20.bpo-31961.x5Sv0R.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-11-08-03-38-20.bpo-31961.x5Sv0R.rst b/Misc/NEWS.d/next/Library/2017-11-08-03-38-20.bpo-31961.x5Sv0R.rst
new file mode 100644
index 0000000..611f4e9
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2017-11-08-03-38-20.bpo-31961.x5Sv0R.rst
@@ -0,0 +1,4 @@
+The *args* argument of subprocess.Popen can now be a
+:term:`path-like object`. If *args* is given as a
+sequence, it's first element can now be a
+:term:`path-like object` as well.