Skip to content

Commit 681a39d

Browse files
committed
Make the PythonHome option not stable for now
1 parent 21803ff commit 681a39d

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

graalpython/com.oracle.graal.python.shell/src/com/oracle/graal/python/shell/GraalPythonMain.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,6 @@ public static void main(String[] args) {
7575

7676
private static final String LANGUAGE_ID = "python";
7777

78-
// provided by GraalVM thin launcher
79-
protected static final String J_BASH_LAUNCHER_EXEC_PROPERTY_NAME = "org.graalvm.launcher.executablename";
80-
8178
private static final String J_PYENVCFG = "pyvenv.cfg";
8279

8380
private static long startupWallClockTime = -1;

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
@@ -92,8 +92,8 @@ private PythonOptions() {
9292
// no instances
9393
}
9494

95-
@Option(category = OptionCategory.USER, help = "Set the home of Python. Equivalent of GRAAL_PYTHONHOME env variable. " +
96-
"Determines default values for the CoreHome, StdLibHome, SysBasePrefix, SysPrefix.", usageSyntax = "<path>", stability = OptionStability.STABLE) //
95+
@Option(category = OptionCategory.EXPERT, help = "Set the home of Python. Equivalent of GRAAL_PYTHONHOME env variable. " +
96+
"Determines default values for the CoreHome, StdLibHome, SysBasePrefix, SysPrefix.", usageSyntax = "<path>", stability = OptionStability.EXPERIMENTAL) //
9797
public static final OptionKey<String> PythonHome = new OptionKey<>("");
9898

9999
@Option(category = OptionCategory.USER, help = "Set the location of sys.prefix. Overrides any environment variables or Java options.", usageSyntax = "<path>", stability = OptionStability.STABLE) //

0 commit comments

Comments
 (0)