Fix T85573: Building with Python 3.10a5 fails
Replace deprecated _PyUnicode_AsString{AndSize} usage.
T83626 still needs to be resolved before 3.10 is usable.
This commit is contained in:
@@ -267,7 +267,7 @@ static int py_imbuf_filepath_set(Py_ImBuf *self, PyObject *value, void *UNUSED(c
|
||||
ImBuf *ibuf = self->ibuf;
|
||||
const Py_ssize_t value_str_len_max = sizeof(ibuf->name);
|
||||
Py_ssize_t value_str_len;
|
||||
const char *value_str = _PyUnicode_AsStringAndSize(value, &value_str_len);
|
||||
const char *value_str = PyUnicode_AsUTF8AndSize(value, &value_str_len);
|
||||
if (value_str_len >= value_str_len_max) {
|
||||
PyErr_Format(PyExc_TypeError, "filepath length over %zd", value_str_len_max - 1);
|
||||
return -1;
|
||||
|
||||
Reference in New Issue
Block a user