(string: str)
| 152 | |
| 153 | |
| 154 | def escapeRE(string: str) -> str: |
| 155 | string = REGEXP_ESCAPE_RE.sub("\\$&", string) |
| 156 | return string |
| 157 | |
| 158 | |
| 159 | # ////////////////////////////////////////////////////////////////////////////// |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…