Skip to content

Commit 2b3637e

Browse files
committedAug 23, 2024
Enable Bytecode DSL always
1 parent d786d6b commit 2b3637e

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/runtime/PythonOptions.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public final class PythonOptions {
8686
* Whether to use the experimental Bytecode DSL interpreter instead of the manually-written
8787
* bytecode interpreter.
8888
*/
89-
public static final boolean ENABLE_BYTECODE_DSL_INTERPRETER = Boolean.getBoolean("python.EnableBytecodeDSLInterpreter");
89+
public static final boolean ENABLE_BYTECODE_DSL_INTERPRETER = true; // Boolean.getBoolean("python.EnableBytecodeDSLInterpreter");
9090

9191
public enum HPyBackendMode {
9292
NFI,

0 commit comments

Comments
 (0)
Failed to load comments.