(match)
| 40 | if isinstance(s, str) and HAS_UTF8.search(s) is not None: |
| 41 | s = s.decode('utf-8') |
| 42 | def replace(match): |
| 43 | return ESCAPE_DCT[match.group(0)] |
| 44 | return u'"' + ESCAPE.sub(replace, s) + u'"' |
| 45 | |
| 46 |
nothing calls this directly
no outgoing calls
no test coverage detected