MCPcopy
hub / github.com/PyMySQL/PyMySQL / escape_sequence

Function escape_sequence

pymysql/converters.py:33–38  ·  view source on GitHub ↗
(val, charset, mapping=None)

Source from the content-addressed store, hash-verified

31
32
33def escape_sequence(val, charset, mapping=None):
34 n = []
35 for item in val:
36 quoted = escape_item(item, charset, mapping)
37 n.append(quoted)
38 return "(" + ",".join(n) + ")"
39
40
41def escape_set(val, charset, mapping=None):

Callers

nothing calls this directly

Calls 1

escape_itemFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…