commit | d0c9353a79c2003385c83892db5dfd4e443474c9 | [log] [tgz] |
---|---|---|
author | Victor Stinner <vstinner@python.org> | Thu May 12 01:35:41 2022 +0200 |
committer | GitHub <noreply@github.com> | Thu May 12 01:35:41 2022 +0200 |
tree | 85d243972089f4ed548140daf0e2d4b24f397b0e | |
parent | 92f0ed1d90bb3338fb36dbeb997e495ab474ae1e [diff] |
gh-89653: PEP 670: unicodeobject.h uses _Py_CAST() (#92696) Use _Py_CAST() and _Py_STATIC_CAST() in macros wrapping static inline functions of unicodeobject.h. Change also the kind type from unsigned int to int: same parameter type than PyUnicode_FromKindAndData(). The limited API version 3.11 no longer casts arguments to expected types.