[PATCH] trace-cmd library: fix compatibility with Python 3.13

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



PyEval_CallObject was deprecated in Python 3.9 and removed from 3.13.

Signed-off-by: Yaakov Selkowitz <yselkowi@xxxxxxxxxx>
---
 python/ctracecmd.i | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/ctracecmd.i b/python/ctracecmd.i
index 6d0179e3..8757cbe4 100644
--- a/python/ctracecmd.i
+++ b/python/ctracecmd.i
@@ -214,7 +214,7 @@ static int python_callback(struct trace_seq *s,
 		SWIG_NewPointerObj(SWIG_as_voidptr(event),
 				   SWIGTYPE_p_tep_event, 0));
 
-	result = PyEval_CallObject(context, arglist);
+	result = PyObject_CallObject(context, arglist);
 	Py_XDECREF(arglist);
 	if (result && result != Py_None) {
 		if (!PyInt_Check(result)) {
-- 
2.45.2





[Index of Archives]     [Linux USB Development]     [Linux USB Development]     [Linux Audio Users]     [Yosemite Hiking]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux