Home
last modified time | relevance | path

Searched refs:unix_shell (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Lib/distutils/tests/
Dtest_spawn.py7 from test.support import run_unittest, unix_shell
39 self.write_file(exe, '#!%s\nexit 1' % unix_shell)
50 self.write_file(exe, '#!%s\nexit 0' % unix_shell)
/external/python/cpython3/Lib/
Dsubprocess.py1399 unix_shell = ('/system/bin/sh' if
1401 args = [unix_shell, "-c"] + args
/external/python/cpython3/Lib/test/
Dtest_os.py64 from test.support import unix_shell, FakePath
706 @unittest.skipUnless(unix_shell and os.path.exists(unix_shell),
711 with os.popen("%s -c 'echo $HELLO'" % unix_shell) as popen:
715 @unittest.skipUnless(unix_shell and os.path.exists(unix_shell),
719 % unix_shell) as popen:
Dtest_subprocess.py1820 fobj.write("#!%s\n" % support.unix_shell)
1865 fobj.write("#!%s\n" % support.unix_shell)
/external/python/cpython3/Misc/NEWS.d/
D3.6.0a4.rst568 Add test.support.unix_shell as the path to the default shell.
/external/python/cpython3/Lib/test/support/
D__init__.py803 unix_shell = '/system/bin/sh' if is_android else '/bin/sh' variable
805 unix_shell = None variable
/external/python/cpython3/Doc/library/
Dtest.rst245 .. data:: unix_shell