History log of /external/python/cpython3/Lib/test/support/script_helper.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
9b8dcc6b1c18d5539735b61004d2e84b3e26cc8f 12-Jan-2017 Victor Stinner <victor.stinner@gmail.com> Fix script_helper.run_python_until_end(): copy SYSTEMROOT

Windows requires at least the SYSTEMROOT environment variable to start Python.
If run_python_until_end() doesn't copy SYSTEMROOT, the function always fail on
Windows.
/external/python/cpython3/Lib/test/support/script_helper.py
7e6977a8bc5c5209d22241933b6a1d5116de4121 17-Aug-2016 Victor Stinner <victor.stinner@gmail.com> script_helper: kill the subprocess on error

If Popen.communicate() raises an exception, kill the child process to not leave
a running child process in background and maybe create a zombi process.

This change fixes a ResourceWarning in Python 3.6 when unit tests are
interrupted by CTRL+c.
/external/python/cpython3/Lib/test/support/script_helper.py
e495646a9702935ae47f01c4fd06b62328bf11cb 24-Jun-2016 Berker Peksag <berker.peksag@gmail.com> Issue #18300: Set TERM='' by default in assert_python_*
/external/python/cpython3/Lib/test/support/script_helper.py
6edadfc9ca0934324e517fc9f9bdd902319825df 14-Dec-2015 Gregory P. Smith <greg@krypto.org> * Re-fix issue #19284: Don't generate the no-op -R command line
parameter to "enable" the always on sys.flags.hash_randomization
in _args_from_interpreter_flags() used by multiprocessing and
some unittests. This simplifies the code.
* assert_python_ok docstring typo fix.
* Fix test_cmd_line not to fail if PYTHONHASHSEED is set to a fixed seed.
076dbd05600337057723b831bfad6f6cb1873100 06-May-2015 Berker Peksag <berker.peksag@gmail.com> Fix remaining tests and remove an unused import.
/external/python/cpython3/Lib/test/support/script_helper.py
ce643913a9049953950918b214fb7cef40506be5 06-May-2015 Berker Peksag <berker.peksag@gmail.com> Issue #9517: Move script_helper to the support package.

Patch by Christie Wilson.
/external/python/cpython3/Lib/test/support/script_helper.py