interpretthis 0.4.1

Sandboxed Python AST interpreter for untrusted and LLM-generated code
Documentation
1
2
3
4
5
6
# math.fabs always returns a float (even for int input) and never preserves
# negative zero.
import math

print(math.fabs(-5))
print(math.fabs(0))