Skip to content

Commit 6a2e2d1

Browse files
committed
default to utf8 mode
1 parent ae63fa3 commit 6a2e2d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/SysModuleBuiltins.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ public void postInitialize(PythonCore core) {
206206
PythonOptions.getFlag(context, PythonOptions.QuietFlag), // quiet
207207
PythonOptions.getFlag(context, PythonOptions.VerboseFlag), // verbose
208208
false, // dev_mode
209-
0, // utf8_mode
209+
1, // utf8_mode
210210
}));
211211

212212
Env env = context.getEnv();

0 commit comments

Comments
 (0)