MCPcopy Index your code
hub / github.com/RustPython/RustPython / unicode_escape_decode

Function unicode_escape_decode

Lib/_pycodecs.py:166–170  ·  view source on GitHub ↗

None

(data, errors="strict", final=True)

Source from the content-addressed store, hash-verified

164
165
166def unicode_escape_decode(data, errors="strict", final=True):
167 """None"""
168 res, consumed = PyUnicode_DecodeUnicodeEscape(data, len(data), errors, final)
169 res = "".join(res)
170 return res, consumed
171
172
173def ascii_decode(data, errors="strict"):

Callers

nothing calls this directly

Calls 3

lenFunction · 0.85
joinMethod · 0.45

Tested by

no test coverage detected