Skip to content

Commit fe6f327

Browse files
committed
Fix codecs module escape functions
1 parent a32a9ec commit fe6f327

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

graalpython/lib-graalpython/_codecs.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -261,22 +261,22 @@ def unicode_internal_decode(obj, errors=None):
261261

262262
@__graalpython__.builtin
263263
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)
265265

266266

267267
@__graalpython__.builtin
268268
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)
270270

271271

272272
@__graalpython__.builtin
273273
def unicode_escape_encode(string, errors=None):
274-
return __truffle_encode("unicode_escape", string, errors)
274+
return __truffle_encode(string, "unicode_escape", errors)
275275

276276

277277
@__graalpython__.builtin
278278
def unicode_escape_decode(string, errors=None):
279-
return __truffle_decode("unicode_escape", string, errors)
279+
return __truffle_decode(string, "unicode_escape", errors)
280280

281281

282282
@__graalpython__.builtin

0 commit comments

Comments
 (0)