Skip to content

Commit 9d79611

Browse files
committed
Adapt to the new splitting heuristic.
1 parent f275833 commit 9d79611

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime/PythonOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ private PythonOptions() {
123123
@Option(category = OptionCategory.EXPERT, help = "Switch on/off using lazy strings for performance reasons. Default true.") //
124124
public static final OptionKey<Boolean> LazyStrings = new OptionKey<>(true);
125125

126-
@Option(category = OptionCategory.EXPERT, help = "Enable forced splitting (of builtins). Default true.") //
127-
public static final OptionKey<Boolean> EnableForcedSplits = new OptionKey<>(true);
126+
@Option(category = OptionCategory.EXPERT, help = "Enable forced splitting (of builtins). Default false.") //
127+
public static final OptionKey<Boolean> EnableForcedSplits = new OptionKey<>(false);
128128

129129
@Option(category = OptionCategory.EXPERT, help = "Set by the launcher if an interactive console is used to run Python.") //
130130
public static final OptionKey<Boolean> TerminalIsInteractive = new OptionKey<>(false);

0 commit comments

Comments
 (0)