@@ -504,6 +504,7 @@ public final class CApiFunction {
504
504
@ CApiBuiltin (name = "PyUnicode_DecodeLatin1" , ret = PyObject , args = {ConstCharPtrAsTruffleString , Py_ssize_t , ConstCharPtrAsTruffleString }, call = CImpl )
505
505
@ CApiBuiltin (name = "PyUnicode_DecodeLocale" , ret = PyObject , args = {ConstCharPtrAsTruffleString , ConstCharPtrAsTruffleString }, call = CImpl )
506
506
@ CApiBuiltin (name = "PyUnicode_DecodeLocaleAndSize" , ret = PyObject , args = {ConstCharPtrAsTruffleString , Py_ssize_t , ConstCharPtrAsTruffleString }, call = CImpl )
507
+ @ CApiBuiltin (name = "PyUnicode_DecodeRawUnicodeEscape" , ret = PyObject , args = {ConstCharPtrAsTruffleString , Py_ssize_t , ConstCharPtrAsTruffleString }, call = CImpl )
507
508
@ CApiBuiltin (name = "PyUnicode_DecodeUTF16" , ret = PyObject , args = {ConstCharPtrAsTruffleString , Py_ssize_t , ConstCharPtrAsTruffleString , INT_LIST }, call = CImpl )
508
509
@ CApiBuiltin (name = "PyUnicode_DecodeUTF16Stateful" , ret = PyObject , args = {ConstCharPtrAsTruffleString , Py_ssize_t , ConstCharPtrAsTruffleString , INT_LIST , PY_SSIZE_T_PTR }, call = CImpl )
509
510
@ CApiBuiltin (name = "PyUnicode_DecodeUTF32" , ret = PyObject , args = {ConstCharPtrAsTruffleString , Py_ssize_t , ConstCharPtrAsTruffleString , INT_LIST }, call = CImpl )
@@ -942,7 +943,6 @@ public final class CApiFunction {
942
943
@ CApiBuiltin (name = "PyUnicode_BuildEncodingMap" , ret = PyObject , args = {PyObject }, call = NotImplemented )
943
944
@ CApiBuiltin (name = "PyUnicode_CopyCharacters" , ret = Py_ssize_t , args = {PyObject , Py_ssize_t , PyObject , Py_ssize_t , Py_ssize_t }, call = NotImplemented )
944
945
@ CApiBuiltin (name = "PyUnicode_DecodeCharmap" , ret = PyObject , args = {ConstCharPtrAsTruffleString , Py_ssize_t , PyObject , ConstCharPtrAsTruffleString }, call = NotImplemented )
945
- @ CApiBuiltin (name = "PyUnicode_DecodeRawUnicodeEscape" , ret = PyObject , args = {ConstCharPtrAsTruffleString , Py_ssize_t , ConstCharPtrAsTruffleString }, call = NotImplemented )
946
946
@ CApiBuiltin (name = "PyUnicode_DecodeUTF7" , ret = PyObject , args = {ConstCharPtrAsTruffleString , Py_ssize_t , ConstCharPtrAsTruffleString }, call = NotImplemented )
947
947
@ CApiBuiltin (name = "PyUnicode_DecodeUTF7Stateful" , ret = PyObject , args = {ConstCharPtrAsTruffleString , Py_ssize_t , ConstCharPtrAsTruffleString , PY_SSIZE_T_PTR }, call = NotImplemented )
948
948
@ CApiBuiltin (name = "PyUnicode_DecodeUnicodeEscape" , ret = PyObject , args = {ConstCharPtrAsTruffleString , Py_ssize_t , ConstCharPtrAsTruffleString }, call = NotImplemented )
0 commit comments