Return a callable that evaluates expr and returns it with its last byte removed.
(expr)
| 644 | return lambda ctx: deep_eval(ctx, expr) + b"\x00" |
| 645 | |
| 646 | def byte_popper(expr): |
| 647 | """Return a callable that evaluates expr and returns it with its last byte removed.""" |
| 648 | return lambda ctx: deep_eval(ctx, expr)[:-1] |
| 649 | |
| 650 | # Expected error strings |
| 651 |
no test coverage detected