Skip to content

Commit d23ad09

Browse files
Fix deprecation warnings
Co-authored-by: Edgar Ramírez Mondragón <16805946+edgarrmondragon@users.noreply.github.com>
1 parent 866004e commit d23ad09

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

simpleeval.py

+12-3
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
- smurfix (Matthias Urlichs) Allow clearing functions / operators / etc completely
6060
- koenigsley (Mikhail Yeremeyev) documentation typos correction.
6161
- kurtmckee (Kurt McKee) Infrastructure updates
62+
- edgarrmondragon (Edgar Ramírez-Mondragón) Address Python 3.12+ deprecation warnings
6263
6364
-------------------------------------
6465
Basic Usage:
@@ -352,8 +353,6 @@ def __init__(self, operators=None, functions=None, names=None):
352353
ast.Assign: self._eval_assign,
353354
ast.AugAssign: self._eval_aug_assign,
354355
ast.Import: self._eval_import,
355-
ast.Num: self._eval_num,
356-
ast.Str: self._eval_str,
357356
ast.Name: self._eval_name,
358357
ast.UnaryOp: self._eval_unaryop,
359358
ast.BinOp: self._eval_binop,
@@ -366,12 +365,22 @@ def __init__(self, operators=None, functions=None, names=None):
366365
ast.Attribute: self._eval_attribute,
367366
ast.Index: self._eval_index,
368367
ast.Slice: self._eval_slice,
369-
ast.NameConstant: self._eval_constant,
370368
ast.JoinedStr: self._eval_joinedstr,
371369
ast.FormattedValue: self._eval_formattedvalue,
372370
ast.Constant: self._eval_constant,
373371
}
374372

373+
# py3.12 deprecated ast.Num, ast.Str, ast.NameConstant
374+
# https://docs.python.org/3.12/whatsnew/3.12.html#deprecated
375+
if Num := getattr(ast, "Num"):
376+
self.nodes[Num] = self._eval_num
377+
378+
if Str := getattr(ast, "Str"):
379+
self.nodes[Str] = self._eval_str
380+
381+
if NameConstant := getattr(ast, "NameConstant"):
382+
self.nodes[NameConstant] = self._eval_constant
383+
375384
# Defaults:
376385

377386
self.ATTR_INDEX_FALLBACK = ATTR_INDEX_FALLBACK

0 commit comments

Comments
 (0)