Get the repr of a ``check`` parameter. Split out so it can be monkeypatched (e.g. by hypothesis)
(fun: Callable[[BaseExcT_1], bool])
| 298 | |
| 299 | |
| 300 | def repr_callable(fun: Callable[[BaseExcT_1], bool]) -> str: |
| 301 | """Get the repr of a ``check`` parameter. |
| 302 | |
| 303 | Split out so it can be monkeypatched (e.g. by hypothesis) |
| 304 | """ |
| 305 | return repr(fun) |
| 306 | |
| 307 | |
| 308 | def backquote(s: str) -> str: |
no outgoing calls