Skip to content

Commit d43b23a

Browse files
committed
remove note about "early stages" implementation on startup
1 parent 00ead38 commit d43b23a

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

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

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -472,10 +472,6 @@ protected void launch(Builder contextBuilder) {
472472
print("Type \"help\", \"copyright\", \"credits\" or \"license\" for more information.");
473473
}
474474
}
475-
if (!quietFlag && stdinIsInteractive) {
476-
System.err.println("Please note: This Python implementation is in the very early stages, " +
477-
"and can run little more than basic benchmarks at this point.");
478-
}
479475
consoleHandler.setContext(context);
480476

481477
if (commandString != null || inputFile != null) {

graalpython/com.oracle.graal.python.test/src/tests/test_tagged_unittests.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,6 @@ def parse_unittest_output(output):
206206

207207
passing_tests = []
208208

209-
stderr = p.stderr.replace("Please note: This Python implementation is in the very early stages, and can run little more than basic benchmarks at this point.\n", '')
210-
211209
# n.b.: we add a '*' in the front, so that unittests doesn't add
212210
# its own asterisks, because now this is already a pattern
213211
for funcname, classname, result in parse_unittest_output(stderr):

0 commit comments

Comments
 (0)