Skip to content

Commit 150ac4d

Browse files
committed
setting the sys.executable may also make sense for embedding
1 parent 29c6815 commit 150ac4d

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ private PythonOptions() {
142142
@Option(category = OptionCategory.EXPERT, help = "Set by the launcher to the terminal height.") //
143143
public static final OptionKey<Integer> TerminalHeight = new OptionKey<>(25);
144144

145-
@Option(category = OptionCategory.EXPERT, help = "The sys.executable path. Set by the launcher, but can may need to be overridden in certain special situations.") //
145+
@Option(category = OptionCategory.EXPERT, help = "The sys.executable path. Set by the launcher, but can may need to be overridden in certain special situations.", stability = OptionStability.STABLE) //
146146
public static final OptionKey<String> Executable = new OptionKey<>("");
147147

148148
@Option(category = OptionCategory.EXPERT, help = "The executed command list as string joined by the executable list separator char. This must always correspond to the real, valid command list used to run GraalPython.") //

0 commit comments

Comments
 (0)