@@ -515,6 +515,7 @@ public final class CApiFunction {
515
515
@ CApiBuiltin (name = "PyUnicode_DecodeLatin1" , ret = PyObject , args = {ConstCharPtrAsTruffleString , Py_ssize_t , ConstCharPtrAsTruffleString }, call = CImpl )
516
516
@ CApiBuiltin (name = "PyUnicode_DecodeLocale" , ret = PyObject , args = {ConstCharPtrAsTruffleString , ConstCharPtrAsTruffleString }, call = CImpl )
517
517
@ CApiBuiltin (name = "PyUnicode_DecodeLocaleAndSize" , ret = PyObject , args = {ConstCharPtrAsTruffleString , Py_ssize_t , ConstCharPtrAsTruffleString }, call = CImpl )
518
+ @ CApiBuiltin (name = "PyUnicode_DecodeRawUnicodeEscape" , ret = PyObject , args = {ConstCharPtrAsTruffleString , Py_ssize_t , ConstCharPtrAsTruffleString }, call = CImpl )
518
519
@ CApiBuiltin (name = "PyUnicode_DecodeUTF16" , ret = PyObject , args = {ConstCharPtrAsTruffleString , Py_ssize_t , ConstCharPtrAsTruffleString , INT_LIST }, call = CImpl )
519
520
@ CApiBuiltin (name = "PyUnicode_DecodeUTF16Stateful" , ret = PyObject , args = {ConstCharPtrAsTruffleString , Py_ssize_t , ConstCharPtrAsTruffleString , INT_LIST , PY_SSIZE_T_PTR }, call = CImpl )
520
521
@ CApiBuiltin (name = "PyUnicode_DecodeUTF32" , ret = PyObject , args = {ConstCharPtrAsTruffleString , Py_ssize_t , ConstCharPtrAsTruffleString , INT_LIST }, call = CImpl )
@@ -953,7 +954,6 @@ public final class CApiFunction {
953
954
@ CApiBuiltin (name = "PyUnicode_BuildEncodingMap" , ret = PyObject , args = {PyObject }, call = NotImplemented )
954
955
@ CApiBuiltin (name = "PyUnicode_CopyCharacters" , ret = Py_ssize_t , args = {PyObject , Py_ssize_t , PyObject , Py_ssize_t , Py_ssize_t }, call = NotImplemented )
955
956
@ CApiBuiltin (name = "PyUnicode_DecodeCharmap" , ret = PyObject , args = {ConstCharPtrAsTruffleString , Py_ssize_t , PyObject , ConstCharPtrAsTruffleString }, call = NotImplemented )
956
- @ CApiBuiltin (name = "PyUnicode_DecodeRawUnicodeEscape" , ret = PyObject , args = {ConstCharPtrAsTruffleString , Py_ssize_t , ConstCharPtrAsTruffleString }, call = NotImplemented )
957
957
@ CApiBuiltin (name = "PyUnicode_DecodeUTF7" , ret = PyObject , args = {ConstCharPtrAsTruffleString , Py_ssize_t , ConstCharPtrAsTruffleString }, call = NotImplemented )
958
958
@ CApiBuiltin (name = "PyUnicode_DecodeUTF7Stateful" , ret = PyObject , args = {ConstCharPtrAsTruffleString , Py_ssize_t , ConstCharPtrAsTruffleString , PY_SSIZE_T_PTR }, call = NotImplemented )
959
959
@ CApiBuiltin (name = "PyUnicode_DecodeUnicodeEscape" , ret = PyObject , args = {ConstCharPtrAsTruffleString , Py_ssize_t , ConstCharPtrAsTruffleString }, call = NotImplemented )
0 commit comments