[python] endless python troubles

This commit is contained in:
nick black 2021-11-29 13:20:59 -05:00
parent 7b4ff301eb
commit 17994e422f
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

View File

@ -196,10 +196,10 @@ static inline void PyObject_cleanup(PyObject **object)
return_value; \
})
#define GNU_PY_CHECK_UINT(py_function) \
({ \
unsigned return_value = py_function; \
return_value; \
#define GNU_PY_CHECK_UINT(py_function) \
({ \
unsigned return_value = (unsigned)py_function; \
return_value; \
})
#define GNU_PY_CHECK_BOOL(py_function) \