From 68d57a3915640593ebd22bdcd1a00e56f53a3cb8 Mon Sep 17 00:00:00 2001 From: VIGNET Pierre <pierre.vignet@irisa.fr> Date: Thu, 19 Dec 2019 16:37:36 +0100 Subject: [PATCH] [lib] C api: do not use pybuildvalue anymore --- library/_cadbiom/cadbiom.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/library/_cadbiom/cadbiom.c b/library/_cadbiom/cadbiom.c index 99ac915..b19d5a3 100644 --- a/library/_cadbiom/cadbiom.c +++ b/library/_cadbiom/cadbiom.c @@ -754,7 +754,11 @@ static PyObject* unflatten(PyObject *self, PyObject *args, PyObject *kwds) Py_DECREF(item); // Equivalent of get_unshift_code but in full C - unshift_code = Py_BuildValue("i", raw_get_unshift_code(&var_num, &shift_step)); // new ref + #ifdef IS_PY3K + unshift_code = PyLong_FromLong(raw_get_unshift_code(&var_num, &shift_step)); // new ref + #else + unshift_code = PyInt_FromLong(raw_get_unshift_code(&var_num, &shift_step)); // new ref + #endif if(unshift_code == NULL) { -- GitLab