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

Function raw_unicode_escape_decode

Lib/_pycodecs.py:126–130  ·  view source on GitHub ↗

None

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

Source from the content-addressed store, hash-verified

124
125
126def raw_unicode_escape_decode(data, errors="strict", final=True):
127 """None"""
128 res, consumed = PyUnicode_DecodeRawUnicodeEscape(data, len(data), errors, final)
129 res = "".join(res)
130 return res, consumed
131
132
133def utf_7_decode(data, errors="strict", final=False):

Callers

nothing calls this directly

Calls 3

lenFunction · 0.85
joinMethod · 0.45

Tested by

no test coverage detected