diff options
author | Gregory P. Smith <greg@krypto.org> | 2015-12-14 04:00:24 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2015-12-14 04:00:24 (GMT) |
commit | 4cb6d37d1d9b2463a121f5f0c6ed9aed2d3f2f9a (patch) | |
tree | d82739c6142e02203d99ff8f4f08d588c7418e1b | |
parent | abeb6479bd59c998fc5e78ba70f300eec9da90ee (diff) | |
download | cpython-4cb6d37d1d9b2463a121f5f0c6ed9aed2d3f2f9a.zip cpython-4cb6d37d1d9b2463a121f5f0c6ed9aed2d3f2f9a.tar.gz cpython-4cb6d37d1d9b2463a121f5f0c6ed9aed2d3f2f9a.tar.bz2 |
assert_python_ok docstring typo fix.
-rw-r--r-- | Lib/test/script_helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/script_helper.py b/Lib/test/script_helper.py index b29392f..d27496b 100644 --- a/Lib/test/script_helper.py +++ b/Lib/test/script_helper.py @@ -107,7 +107,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. |