Commit de4d0a39 authored by Kevin Modzelewski's avatar Kevin Modzelewski

Set dont_write_bytcode=True by default

parent 928d5de2
......@@ -44,7 +44,11 @@ int Py_DivisionWarningFlag = 0;
int Py_HashRandomizationFlag = 0;
int Py_DebugFlag = 0;
int _Py_QnewFlag = 0;
int Py_DontWriteBytecodeFlag = 0;
// Pyston change: set this by default to True
// We can support many cases of users wanting to write bytecode, but there are some
// that are much harder to support (py.test wants to write its own pyc files), and
// this flag is one of the few levers we have to avoid hitting those paths.
int Py_DontWriteBytecodeFlag = 1;
int Py_NoUserSiteDirectory = 0;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment