summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2018-09-10 23:16:08 (GMT)
committerGitHub <noreply@github.com>2018-09-10 23:16:08 (GMT)
commit880d42a3b247306f67837aa95e23f7c3471a30a3 (patch)
treeb7f3aca130e34cbd934b5b448feeaec9800fd5c2 /Misc
parent28ea4c284724283265e95d1d1716c9f1dfc2d741 (diff)
downloadcpython-880d42a3b247306f67837aa95e23f7c3471a30a3.zip
cpython-880d42a3b247306f67837aa95e23f7c3471a30a3.tar.gz
cpython-880d42a3b247306f67837aa95e23f7c3471a30a3.tar.bz2
bpo-8110: Refactor platform detection in subprocess (GH-9053)
Check for functionality via imports rather than checking sys.platform specifically for Windows
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-09-03-23-54-35.bpo-8110.FExWI_.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-09-03-23-54-35.bpo-8110.FExWI_.rst b/Misc/NEWS.d/next/Library/2018-09-03-23-54-35.bpo-8110.FExWI_.rst
new file mode 100644
index 0000000..c29ace1
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-09-03-23-54-35.bpo-8110.FExWI_.rst
@@ -0,0 +1,2 @@
+Refactored :mod:`subprocess` to check for Windows-specific modules rather
+than ``sys.platform == 'win32'``.