diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-25 10:15:39 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-31 18:28:16 +0900 |
| commit | 18bbe17324adf762d25334d1a072989ac296f728 (patch) | |
| tree | 7d61177fbd677dc42d963d6d11bcc368b01d6730 /siplib/siplib.c | |
| parent | c668d2b1b34ee856e70874159c42892a4c9c8af4 (diff) | |
| download | sip4-tqt-18bbe173.tar.gz sip4-tqt-18bbe173.zip | |
Add support for python 3.12 and raise minimum required version to 3.3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit c35201f9225d22cf17073e36300c6afd92d89700)
Diffstat (limited to 'siplib/siplib.c')
| -rw-r--r-- | siplib/siplib.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/siplib/siplib.c b/siplib/siplib.c index d90970c..c58a47a 100644 --- a/siplib/siplib.c +++ b/siplib/siplib.c @@ -9384,7 +9384,7 @@ static char sip_api_string_as_ascii_char(PyObject *obj) if (parseString_AsASCIIChar(obj, &ch) < 0) { /* Use the exception set if it was an encoding error. */ - if (!PyUnicode_Check(obj) || PyUnicode_GET_SIZE(obj) != 1) + if (!PyUnicode_Check(obj) || PyUnicode_GET_LENGTH(obj) != 1) PyErr_Format(PyExc_TypeError, "bytes or ASCII string of length 1 expected not '%s'", Py_TYPE(obj)->tp_name); @@ -9416,7 +9416,7 @@ static char sip_api_string_as_latin1_char(PyObject *obj) if (parseString_AsLatin1Char(obj, &ch) < 0) { /* Use the exception set if it was an encoding error. */ - if (!PyUnicode_Check(obj) || PyUnicode_GET_SIZE(obj) != 1) + if (!PyUnicode_Check(obj) || PyUnicode_GET_LENGTH(obj) != 1) PyErr_Format(PyExc_TypeError, "bytes or Latin-1 string of length 1 expected not '%s'", Py_TYPE(obj)->tp_name); @@ -9448,7 +9448,7 @@ static char sip_api_string_as_utf8_char(PyObject *obj) if (parseString_AsUTF8Char(obj, &ch) < 0) { /* Use the exception set if it was an encoding error. */ - if (!PyUnicode_Check(obj) || PyUnicode_GET_SIZE(obj) != 1) + if (!PyUnicode_Check(obj) || PyUnicode_GET_LENGTH(obj) != 1) PyErr_Format(PyExc_TypeError, "bytes or UTF-8 string of length 1 expected not '%s'", Py_TYPE(obj)->tp_name); @@ -9757,7 +9757,7 @@ static int convertToWCharArray(PyObject *obj, wchar_t **ap, SIP_SSIZE_T *aszp) SIP_SSIZE_T ulen; wchar_t *wc; - ulen = PyUnicode_GET_SIZE(obj); + ulen = PyUnicode_GET_LENGTH(obj); if ((wc = sip_api_malloc(ulen * sizeof (wchar_t))) == NULL) return -1; @@ -9794,7 +9794,7 @@ static int parseWChar(PyObject *obj, wchar_t *ap) */ static int convertToWChar(PyObject *obj, wchar_t *ap) { - if (PyUnicode_GET_SIZE(obj) != 1) + if (PyUnicode_GET_LENGTH(obj) != 1) return -1; if (PyUnicode_AsWideChar((PyUnicodeObject *)obj, ap, 1) != 1) @@ -9832,7 +9832,7 @@ static int convertToWCharString(PyObject *obj, wchar_t **ap) SIP_SSIZE_T ulen; wchar_t *wc; - ulen = PyUnicode_GET_SIZE(obj); + ulen = PyUnicode_GET_LENGTH(obj); if ((wc = sip_api_malloc((ulen + 1) * sizeof (wchar_t))) == NULL) return -1; |
