Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecate eval(), replacing it with lambda_eval() and unsafe_eval() #7927

Merged
merged 6 commits into from
Apr 1, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Name as 'options' in lambda_eval and unsafe_eval, but '_dict' in depr…
…ecated eval
  • Loading branch information
hugovk committed Apr 1, 2024
commit f5eeeacf7539eaa0d93a677d7666bc7c142c8d1c
16 changes: 8 additions & 8 deletions src/PIL/ImageMath.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def imagemath_convert(self: _Operand, mode: str) -> _Operand:

def lambda_eval(
expression: Callable[[dict[str, Any]], Any],
_dict: dict[str, Any] = {},
options: dict[str, Any] = {},
**kw: Any,
) -> Any:
"""
Expand All @@ -258,7 +258,7 @@ def lambda_eval(
"""

args: dict[str, Any] = ops.copy()
args.update(_dict)
args.update(options)
args.update(kw)
for k, v in args.items():
if hasattr(v, "im"):
Expand All @@ -273,7 +273,7 @@ def lambda_eval(

def unsafe_eval(
expression: str,
_dict: dict[str, Any] = {},
options: dict[str, Any] = {},
**kw: Any,
) -> Any:
"""
Expand All @@ -297,12 +297,12 @@ def unsafe_eval(

# build execution namespace
args: dict[str, Any] = ops.copy()
for k in list(_dict.keys()) + list(kw.keys()):
for k in list(options.keys()) + list(kw.keys()):
if "__" in k or hasattr(builtins, k):
msg = f"'{k}' not allowed"
raise ValueError(msg)

args.update(_dict)
args.update(options)
args.update(kw)
for k, v in args.items():
if hasattr(v, "im"):
Expand Down Expand Up @@ -339,9 +339,9 @@ def eval(
Deprecated. Use lambda_eval() or unsafe_eval() instead.

:param expression: A string containing a Python-style expression.
:param options: Values to add to the evaluation context. You
can either use a dictionary, or one or more keyword
arguments.
:param _dict: Values to add to the evaluation context. You
can either use a dictionary, or one or more keyword
arguments.
:return: The evaluated expression. This is usually an image object, but can
also be an integer, a floating point value, or a pixel tuple,
depending on the expression.
Expand Down
Loading