Strip escape \\ characters
(string: str)
| 132 | |
| 133 | |
| 134 | def stripEscape(string: str) -> str: |
| 135 | """Strip escape \\ characters""" |
| 136 | return ESCAPE_CHAR.sub(r"\1", string) |
| 137 | |
| 138 | |
| 139 | def escapeHtml(raw: str) -> str: |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…