mirror of https://github.com/pyodide/pyodide.git
28 lines
896 B
Diff
28 lines
896 B
Diff
From 9d0c813518fbdaa9963e46362608dd6d3e391799 Mon Sep 17 00:00:00 2001
|
|
From: Hood Chatham <roberthoodchatham@gmail.com>
|
|
Date: Mon, 2 May 2022 17:31:07 -0700
|
|
Subject: [PATCH 09/14] Add one more trampoline in cfunction_vectorcall_O
|
|
|
|
Christian already added this upstream in 3.11a7 so we can remove
|
|
this when we update to 3.11
|
|
---
|
|
Objects/methodobject.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/Objects/methodobject.c b/Objects/methodobject.c
|
|
index 978d62cd67..26919a15e9 100644
|
|
--- a/Objects/methodobject.c
|
|
+++ b/Objects/methodobject.c
|
|
@@ -519,7 +519,7 @@ cfunction_vectorcall_O(
|
|
if (meth == NULL) {
|
|
return NULL;
|
|
}
|
|
- PyObject *result = meth(PyCFunction_GET_SELF(func), args[0]);
|
|
+ PyObject *result = method_call_trampoline(meth, PyCFunction_GET_SELF(func), args[0], NULL);
|
|
_Py_LeaveRecursiveCall(tstate);
|
|
return result;
|
|
}
|
|
--
|
|
2.25.1
|
|
|