Skip to content

Commit 34ca7fa

Browse files
committed
these two options need also to be stable
1 parent ce3cb38 commit 34ca7fa

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
@@ -45,7 +45,7 @@ private PythonOptions() {
4545
@Option(category = OptionCategory.USER, help = "Set the location of sys.prefix. Overrides any environment variables or Java options.", stability = OptionStability.STABLE) //
4646
public static final OptionKey<String> SysPrefix = new OptionKey<>("");
4747

48-
@Option(category = OptionCategory.EXPERT, help = "Set the location of sys.base_prefix. Overrides any environment variables or Java options.") //
48+
@Option(category = OptionCategory.EXPERT, help = "Set the location of sys.base_prefix. Overrides any environment variables or Java options.", stability = OptionStability.STABLE) //
4949
public static final OptionKey<String> SysBasePrefix = new OptionKey<>("");
5050

5151
@Option(category = OptionCategory.USER, help = "Set the location of lib-graalpython. Overrides any environment variables or Java options.", stability = OptionStability.STABLE) //
@@ -85,7 +85,7 @@ private PythonOptions() {
8585
@Option(category = OptionCategory.USER, help = "Equivalent to the Python -v flag. Turn on verbose mode.", stability = OptionStability.STABLE) //
8686
public static final OptionKey<Boolean> VerboseFlag = new OptionKey<>(false);
8787

88-
@Option(category = OptionCategory.USER, help = "Equivalent to the Python -u flag. Force stdout and stderr to be unbuffered.") //
88+
@Option(category = OptionCategory.USER, help = "Equivalent to the Python -u flag. Force stdout and stderr to be unbuffered.", stability = OptionStability.STABLE) //
8989
public static final OptionKey<Boolean> UnbufferedIO = new OptionKey<>(false);
9090

9191
@Option(category = OptionCategory.INTERNAL, help = "Expose internal sources as normal sources, so they will show up in the debugger and stacks") //

0 commit comments

Comments
 (0)