Allow ops

This commit is contained in:
Andrew Murray 2023-10-28 15:58:52 +11:00
parent 45c726fd4d
commit 0ca3c33c59
2 changed files with 10 additions and 4 deletions

View File

@ -64,6 +64,11 @@ def test_prevent_exec(expression):
ImageMath.eval(expression)
def test_prevent_double_underscores():
with pytest.raises(ValueError):
ImageMath.eval("1", {"__": None})
def test_logical():
assert pixel(ImageMath.eval("not A", images)) == 0
assert pixel(ImageMath.eval("A and B", images)) == "L 2"

View File

@ -234,13 +234,14 @@ def eval(expression, _dict={}, **kw):
# build execution namespace
args = ops.copy()
args.update(_dict)
args.update(kw)
for k, v in args.items():
if '__' in k or hasattr(__builtins__, k):
for k in list(_dict.keys()) + list(kw.keys()):
if "__" in k or hasattr(__builtins__, k):
msg = f"'{k}' not allowed"
raise ValueError(msg)
args.update(_dict)
args.update(kw)
for k, v in args.items():
if hasattr(v, "im"):
args[k] = _Operand(v)