Cleanup: define PY_SSIZE_T_CLEAN for Python

Silence deprecation warnings running with Python 3.8.
This commit is contained in:
2019-10-16 15:55:47 +11:00
parent 36b6fb5cd6
commit 9dd5e3b6e8
3 changed files with 21 additions and 12 deletions

View File

@@ -25,6 +25,9 @@
* BLI_string_utf8() for unicode conversion.
*/
/* Future-proof, See https://docs.python.org/3/c-api/arg.html#strings-and-buffers */
#define PY_SSIZE_T_CLEAN
#include <Python.h>
#include <frameobject.h>
@@ -873,7 +876,7 @@ void PyC_RunQuicky(const char *filepath, int n, ...)
va_list vargs;
int *sizes = PyMem_MALLOC(sizeof(int) * (n / 2));
Py_ssize_t *sizes = PyMem_MALLOC(sizeof(*sizes) * (n / 2));
int i;
PyObject *py_dict = PyC_DefaultNameSpace(filepath);