We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 486fd57 commit e3328c8Copy full SHA for e3328c8
graalpython/com.oracle.graal.python.shell/src/com/oracle/graal/python/shell/GraalPythonMain.java
@@ -227,8 +227,10 @@ protected void launch(Builder contextBuilder) {
227
if (!noSite) {
228
evalInternal(context, "import site\n");
229
}
230
- System.err.println("Please note: This Python implementation is in the very early stages, " +
231
- "and can run little more than basic benchmarks at this point.");
+ if (!quietFlag) {
+ System.err.println("Please note: This Python implementation is in the very early stages, " +
232
+ "and can run little more than basic benchmarks at this point.");
233
+ }
234
consoleHandler.setContext(context);
235
236
if (commandString != null || inputFile != null) {
0 commit comments