Skip to content

Commit ee0c5a5

Browse files
committed
[GR-26769] Remove note about "early stages" implementation on startup.
PullRequest: graalpython/1331
2 parents 1724f62 + d43b23a commit ee0c5a5

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
@@ -479,10 +479,6 @@ protected void launch(Builder contextBuilder) {
479479
print("Type \"help\", \"copyright\", \"credits\" or \"license\" for more information.");
480480
}
481481
}
482-
if (!quietFlag && stdinIsInteractive) {
483-
System.err.println("Please note: This Python implementation is in the very early stages, " +
484-
"and can run little more than basic benchmarks at this point.");
485-
}
486482
consoleHandler.setContext(context);
487483

488484
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)