Skip to content

Commit 9798d3d

Browse files
committed
Fix: add missing '@may_raise' to 'PyObject_Call'.
1 parent ea72413 commit 9798d3d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

graalpython/lib-graalpython/python_cext.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -910,6 +910,7 @@ def PyObject_Size(obj):
910910
return -1
911911

912912

913+
@may_raise
913914
def PyObject_Call(callee, args, kwargs):
914915
return callee(*args, **kwargs)
915916

0 commit comments

Comments
 (0)