Home
last modified time | relevance | path

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

/external/python/setuptools/setuptools/_distutils/tests/
Dpy35compat.py43 from test.support import unix_shell
47 unix_shell = ( variable
Dtest_spawn.py8 from .py35compat import unix_shell
29 self.write_file(exe, '#!%s\nexit 1' % unix_shell)
40 self.write_file(exe, '#!%s\nexit 0' % unix_shell)
/external/python/cpython3/Lib/distutils/tests/
Dtest_spawn.py6 from test.support import run_unittest, unix_shell
27 self.write_file(exe, '#!%s\nexit 1' % unix_shell)
38 self.write_file(exe, '#!%s\nexit 0' % unix_shell)
/external/python/cpython3/Lib/test/
Dtest_pipes.py6 from test.support import reap_children, unix_shell
13 if not (unix_shell and os.path.exists(unix_shell)):
Dtest_os.py69 from test.support import unix_shell
992 @unittest.skipUnless(unix_shell and os.path.exists(unix_shell),
998 with os.popen("%s -c 'echo $HELLO'" % unix_shell) as popen:
1002 @unittest.skipUnless(unix_shell and os.path.exists(unix_shell),
1007 % unix_shell) as popen:
1171 if not (unix_shell and os.path.exists(unix_shell)):
Dtest_subprocess.py2195 fobj.write("#!%s\n" % support.unix_shell)
2240 fobj.write("#!%s\n" % support.unix_shell)
/external/python/cpython3/Lib/test/support/
D__init__.py473 unix_shell = '/system/bin/sh' if is_android else '/bin/sh' variable
475 unix_shell = None variable
/external/python/cpython3/Lib/
Dsubprocess.py1705 unix_shell = ('/system/bin/sh' if
1707 args = [unix_shell, "-c"] + args
/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/Doc/library/
Dtest.rst245 .. data:: unix_shell