Skip to content

Commit aeac29c

Browse files
Update Python/sysmodule.c
Co-authored-by: Ken Jin <kenjin4096@gmail.com>
1 parent 398e38f commit aeac29c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/sysmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2290,7 +2290,7 @@ sys_activate_stack_trampoline_impl(PyObject *module, const char *backend)
22902290
#ifdef _Py_TIER2
22912291
_PyOptimizerObject* optimizer = _Py_GetOptimizer();
22922292
if (optimizer != NULL) {
2293-
PyErr_SetString(PyExc_ValueError, "Cannot activate the perf trampiline if the JIT is active");
2293+
PyErr_SetString(PyExc_ValueError, "Cannot activate the perf trampoline if the JIT is active");
22942294
return NULL;
22952295
}
22962296
#endif

0 commit comments

Comments
 (0)