File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
graalpython/lib-graalpython Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -261,22 +261,22 @@ def unicode_internal_decode(obj, errors=None):
261
261
262
262
@__graalpython__ .builtin
263
263
def raw_unicode_escape_encode (string , errors = None ):
264
- return __truffle_encode ("raw_unicode_escape" , string , errors )
264
+ return __truffle_encode (string , "raw_unicode_escape" , errors )
265
265
266
266
267
267
@__graalpython__ .builtin
268
268
def raw_unicode_escape_decode (string , errors = None ):
269
- return __truffle_decode ("raw_unicode_escape" , string , errors )
269
+ return __truffle_decode (string , "raw_unicode_escape" , errors )
270
270
271
271
272
272
@__graalpython__ .builtin
273
273
def unicode_escape_encode (string , errors = None ):
274
- return __truffle_encode ("unicode_escape" , string , errors )
274
+ return __truffle_encode (string , "unicode_escape" , errors )
275
275
276
276
277
277
@__graalpython__ .builtin
278
278
def unicode_escape_decode (string , errors = None ):
279
- return __truffle_decode ("unicode_escape" , string , errors )
279
+ return __truffle_decode (string , "unicode_escape" , errors )
280
280
281
281
282
282
@__graalpython__ .builtin
You can’t perform that action at this time.
0 commit comments