summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2011-11-08 10:49:23 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2011-11-08 10:49:23 (GMT)
commitc29248f2324188a192d11a0e8adf9e146b326bd4 (patch)
tree2ec3e52424997b2dbdb8ab46f1d06845974ea440 /Misc
parent23760e97edadb33b9b49094d55ded1ffd51a4a81 (diff)
downloadcpython-c29248f2324188a192d11a0e8adf9e146b326bd4.zip
cpython-c29248f2324188a192d11a0e8adf9e146b326bd4.tar.gz
cpython-c29248f2324188a192d11a0e8adf9e146b326bd4.tar.bz2
Issue #13237: Forward port subprocess module updates and explicitly document UTF-8 encoding assumption when universal_newlines=True
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 2923982..0d5f981 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -259,6 +259,9 @@ Extension Modules
Documentation
-------------
+- Issue #13237: Reorganise subprocess documentation to emphasise convenience
+ functions and the most commonly needed arguments to Popen.
+
- Issue #13141: Demonstrate recommended style for socketserver examples.