* 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.
This commit is contained in:
Gregory P. Smith 2015-12-13 20:09:42 -08:00
commit 6edadfc9ca
3 changed files with 16 additions and 7 deletions

View file

@ -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.