You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
663 B

  1. --- a/Python/initconfig.c
  2. +++ b/Python/initconfig.c
  3. @@ -158,7 +158,7 @@ int Py_NoSiteFlag = 0; /* Suppress 'impo
  4. int Py_BytesWarningFlag = 0; /* Warn on str(bytes) and str(buffer) */
  5. int Py_FrozenFlag = 0; /* Needed by getpath.c */
  6. int Py_IgnoreEnvironmentFlag = 0; /* e.g. PYTHONPATH, PYTHONHOME */
  7. -int Py_DontWriteBytecodeFlag = 0; /* Suppress writing bytecode files (*.pyc) */
  8. +int Py_DontWriteBytecodeFlag = 1; /* Suppress writing bytecode files (*.pyc) */
  9. int Py_NoUserSiteDirectory = 0; /* for -s and site.py */
  10. int Py_UnbufferedStdioFlag = 0; /* Unbuffered binary std{in,out,err} */
  11. int Py_HashRandomizationFlag = 0; /* for -R and PYTHONHASHSEED */