Skip to content

Commit 0a36847

Browse files
committed
Provide an implementation name.
1 parent d9ecb42 commit 0a36847

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/PythonLanguage.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@
102102

103103
@TruffleLanguage.Registration(id = PythonLanguage.ID, //
104104
name = PythonLanguage.NAME, //
105+
implementationName = PythonLanguage.IMPLEMENTATION_NAME, //
105106
version = PythonLanguage.VERSION, //
106107
characterMimeTypes = {PythonLanguage.MIME_TYPE,
107108
PythonLanguage.MIME_TYPE_COMPILE0, PythonLanguage.MIME_TYPE_COMPILE1, PythonLanguage.MIME_TYPE_COMPILE2,
@@ -126,6 +127,7 @@
126127
public final class PythonLanguage extends TruffleLanguage<PythonContext> {
127128
public static final String ID = "python";
128129
public static final String NAME = "Python";
130+
public static final String IMPLEMENTATION_NAME = "GraalVM Python";
129131
public static final int MAJOR = 3;
130132
public static final int MINOR = 8;
131133
public static final int MICRO = 5;

0 commit comments

Comments
 (0)