Searched refs:escaped_chars_repl (Results 1 – 1 of 1) sorted by relevance
26 static Py_UNICODE *escaped_chars_repl[ESCAPED_CHARS_TABLE_SIZE]; variable33 escaped_chars_repl['"'] = UNICHR("""); in init_constants()34 escaped_chars_repl['\''] = UNICHR("'"); in init_constants()35 escaped_chars_repl['&'] = UNICHR("&"); in init_constants()36 escaped_chars_repl['<'] = UNICHR("<"); in init_constants()37 escaped_chars_repl['>'] = UNICHR(">"); in init_constants()105 Py_UNICODE_COPY(outp, escaped_chars_repl[*next_escp], delta_len); in escape_unicode()