summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorXavier de Gaye <xdegaye@users.sourceforge.net>2016-12-13 15:32:21 (GMT)
committerXavier de Gaye <xdegaye@users.sourceforge.net>2016-12-13 15:32:21 (GMT)
commitb35fc626c1efe72cf5a0b3c8faf860830aab0a83 (patch)
tree1d3f5b0882d505342f85796474a66cab53f4d6d8 /Misc
parentf191a9e8e4f3fbcf018fac4996d764c2b9d60800 (diff)
downloadcpython-b35fc626c1efe72cf5a0b3c8faf860830aab0a83.zip
cpython-b35fc626c1efe72cf5a0b3c8faf860830aab0a83.tar.gz
cpython-b35fc626c1efe72cf5a0b3c8faf860830aab0a83.tar.bz2
Issue #16255: subrocess.Popen uses /system/bin/sh on Android as the shell,
instead of /bin/sh.
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 fe9dc95..a06e3cb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -177,6 +177,9 @@ Core and Builtins
Library
-------
+- Issue #16255: subrocess.Popen uses /system/bin/sh on Android as the shell,
+ instead of /bin/sh.
+
- Issue #28779: multiprocessing.set_forkserver_preload() would crash the
forkserver process if a preloaded module instantiated some
multiprocessing objects such as locks.