(s: str)
| 352 | |
| 353 | |
| 354 | def unescape(s: str) -> str: |
| 355 | return re.sub(r"\\([{}()+-.*?^$\[\]\s\\|])", r"\1", s) |
| 356 | |
| 357 | |
| 358 | # These classes conceptually differ from ExceptionInfo in that ExceptionInfo is tied, and |
no outgoing calls
searching dependent graphs…