summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-03-20 17:47:57 (GMT)
committerBenjamin Peterson <benjamin@python.org>2013-03-20 17:47:57 (GMT)
commit625af8e13ea3bdd83fd46cbd6d0bc44d97df9355 (patch)
treef020220aad3fe91ba750e998f685ce21a5ab1d2a
parent5c87ad07bd3f38270a5b8c79d30c831c90ef3963 (diff)
downloadcpython-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.py2
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)
#