Skip to content

Commit 3941968

Browse files
committed
Fix HPy JNI context name
1 parent 03f661c commit 3941968

File tree

1 file changed

+1
-1
lines changed
  • graalpython/com.oracle.graal.python.jni/src

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python.jni/src/hpy_jni.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ static HPy augment_UnicodeFromWideChar(HPyContext ctx, const wchar_t *u, HPy_ssi
406406

407407
void initDirectFastPaths(HPyContext context) {
408408
LOG("%p", context);
409-
context->name = "augmented!";
409+
context->name = "HPy Universal ABI (GraalVM backend, JNI)";
410410

411411
original_FloatFromDouble = context->ctx_Float_FromDouble;
412412
context->ctx_Float_FromDouble = augment_FloatFromDouble;

0 commit comments

Comments
 (0)