(field)
| 70 | |
| 71 | |
| 72 | def escape_chars(field): |
| 73 | if not isinstance(field, dict) and not isinstance(field, list): |
| 74 | return field |
| 75 | |
| 76 | value = fast_deepcopy_dict(field) |
| 77 | |
| 78 | return _translate_chars(value, ESCAPE_TRANSLATION) |
| 79 | |
| 80 | |
| 81 | def unescape_chars(field): |
nothing calls this directly
no test coverage detected