site.py is needed to set up paths

This commit is contained in:
Benjamin Peterson 2013-03-20 12:47:57 -05:00
parent 5c87ad07bd
commit 625af8e13e
1 changed files with 1 additions and 1 deletions

View File

@ -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)
#