File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -475,7 +475,7 @@ int Py_NoSiteFlag = 0; /* Suppress 'import site' */
475475int Py_BytesWarningFlag = 0 ; /* Warn on str(bytes) and str(buffer) */
476476int Py_FrozenFlag = 0 ; /* Needed by getpath.c */
477477int Py_IgnoreEnvironmentFlag = 0 ; /* e.g. PYTHONPATH, PYTHONHOME */
478- int Py_DontWriteBytecodeFlag = 0 ; /* Suppress writing bytecode files (*.pyc) */
478+ int Py_DontWriteBytecodeFlag = 1 ; /* Suppress writing bytecode files (*.pyc) */
479479int Py_NoUserSiteDirectory = 0 ; /* for -s and site.py */
480480int Py_UnbufferedStdioFlag = 0 ; /* Unbuffered binary std{in,out,err} */
481481int Py_HashRandomizationFlag = 0 ; /* for -R and PYTHONHASHSEED */
@@ -1080,7 +1080,7 @@ config_init_defaults(PyConfig *config)
10801080 config -> interactive = 0 ;
10811081 config -> optimization_level = 0 ;
10821082 config -> parser_debug = 0 ;
1083- config -> write_bytecode = 1 ;
1083+ config -> write_bytecode = 0 ;
10841084 config -> verbose = 0 ;
10851085 config -> quiet = 0 ;
10861086 config -> user_site_directory = 1 ;
You can’t perform that action at this time.
0 commit comments