aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/jit.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/jit.c')
-rw-r--r--Python/jit.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/jit.c b/Python/jit.c
index 4b01112f9b0..33c2418084b 100644
--- a/Python/jit.c
+++ b/Python/jit.c
@@ -563,7 +563,8 @@ _PyJIT_Free(_PyExecutorObject *executor)
executor->jit_side_entry = NULL;
executor->jit_size = 0;
if (jit_free(memory, size)) {
- PyErr_FormatUnraisable("Exception ignored when freeing JIT memory");
+ PyErr_FormatUnraisable("Exception ignored while "
+ "freeing JIT memory");
}
}
}