summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTim Golden <mail@timgolden.me.uk>2013-11-03 12:53:17 (GMT)
committerTim Golden <mail@timgolden.me.uk>2013-11-03 12:53:17 (GMT)
commite004175c5694804c263f0f06e7a4e3bbc6852cc4 (patch)
treeac8643f53299b0b22873ee3ee07d03651b38e8c0 /Misc
parent0bdcdecca7736151278097784720be08cbdc221c (diff)
downloadcpython-e004175c5694804c263f0f06e7a4e3bbc6852cc4.zip
cpython-e004175c5694804c263f0f06e7a4e3bbc6852cc4.tar.gz
cpython-e004175c5694804c263f0f06e7a4e3bbc6852cc4.tar.bz2
Issue #10197 Rework subprocess.get[status]output to use subprocess functionality and thus to work on Windows. Patch by Nick Coghlan.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ab1b981..bdd65a6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Core and Builtins
Library
-------
+- Issue #10197: Rework subprocess.get[status]output to use subprocess
+ functionality and thus to work on Windows. Patch by Nick Coghlan.
+
- Issue #19286: Directories in ``package_data`` are no longer added to
the filelist, preventing failure outlined in the ticket.