Skip to content

Commit 929eb43

Browse files
committed
[GR-12157] Fixed ModuleRootNode.toString()
PullRequest: graalpython/243
2 parents 3427b9d + a9ef5b7 commit 929eb43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/ModuleRootNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public ExpressionNode getBody() {
5858
@Override
5959
public String toString() {
6060
CompilerAsserts.neverPartOfCompilation();
61-
return "<module '" + name + "'>";
61+
return name;
6262
}
6363

6464
@Override

0 commit comments

Comments
 (0)