diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-03-20 17:47:57 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-03-20 17:47:57 (GMT) |
commit | 625af8e13ea3bdd83fd46cbd6d0bc44d97df9355 (patch) | |
tree | f020220aad3fe91ba750e998f685ce21a5ab1d2a | |
parent | 5c87ad07bd3f38270a5b8c79d30c831c90ef3963 (diff) | |
download | cpython-625af8e13ea3bdd83fd46cbd6d0bc44d97df9355.zip cpython-625af8e13ea3bdd83fd46cbd6d0bc44d97df9355.tar.gz cpython-625af8e13ea3bdd83fd46cbd6d0bc44d97df9355.tar.bz2 |
site.py is needed to set up paths
-rw-r--r-- | Lib/test/test_multiprocessing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py index 8091a9f..bdf4e62 100644 --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -2427,7 +2427,7 @@ class TestFlags(unittest.TestCase): prog = ('from test.test_multiprocessing import TestFlags; ' + 'TestFlags.run_in_child()') data = subprocess.check_output( - [sys.executable, '-E', '-S', '-O', '-c', prog]) + [sys.executable, '-E', '-B', '-O', '-c', prog]) child_flags, grandchild_flags = json.loads(data.decode('ascii')) self.assertEqual(child_flags, grandchild_flags) # |