diff options
author | Gregory P. Smith <greg@krypto.org> | 2015-12-14 04:15:26 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2015-12-14 04:15:26 (GMT) |
commit | fcbdf9906ba1ee0fcb53ff1a8afaaa933a92a56f (patch) | |
tree | 140b6f95690cca9a0d7d4787921d93f99e2d2fd6 /Lib/test/support | |
parent | 86d322f0204797b0a2fe46e33bce240335270c6f (diff) | |
parent | 6edadfc9ca0934324e517fc9f9bdd902319825df (diff) | |
download | cpython-fcbdf9906ba1ee0fcb53ff1a8afaaa933a92a56f.zip cpython-fcbdf9906ba1ee0fcb53ff1a8afaaa933a92a56f.tar.gz cpython-fcbdf9906ba1ee0fcb53ff1a8afaaa933a92a56f.tar.bz2 |
* 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.
Diffstat (limited to 'Lib/test/support')
-rw-r--r-- | Lib/test/support/script_helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/support/script_helper.py b/Lib/test/support/script_helper.py index 584b0e8..9c2e9eb 100644 --- a/Lib/test/support/script_helper.py +++ b/Lib/test/support/script_helper.py @@ -127,7 +127,7 @@ def assert_python_ok(*args, **env_vars): variables `env_vars` succeeds (rc == 0) and return a (return code, stdout, stderr) tuple. - If the __cleanenv keyword is set, env_vars is used a fresh environment. + If the __cleanenv keyword is set, env_vars is used as a fresh environment. Python is started in isolated mode (command line option -I), except if the __isolated keyword is set to False. |