59
59
- smurfix (Matthias Urlichs) Allow clearing functions / operators / etc completely
60
60
- koenigsley (Mikhail Yeremeyev) documentation typos correction.
61
61
- kurtmckee (Kurt McKee) Infrastructure updates
62
+ - edgarrmondragon (Edgar Ramírez-Mondragón) Address Python 3.12+ deprecation warnings
62
63
63
64
-------------------------------------
64
65
Basic Usage:
@@ -352,8 +353,6 @@ def __init__(self, operators=None, functions=None, names=None):
352
353
ast .Assign : self ._eval_assign ,
353
354
ast .AugAssign : self ._eval_aug_assign ,
354
355
ast .Import : self ._eval_import ,
355
- ast .Num : self ._eval_num ,
356
- ast .Str : self ._eval_str ,
357
356
ast .Name : self ._eval_name ,
358
357
ast .UnaryOp : self ._eval_unaryop ,
359
358
ast .BinOp : self ._eval_binop ,
@@ -366,12 +365,22 @@ def __init__(self, operators=None, functions=None, names=None):
366
365
ast .Attribute : self ._eval_attribute ,
367
366
ast .Index : self ._eval_index ,
368
367
ast .Slice : self ._eval_slice ,
369
- ast .NameConstant : self ._eval_constant ,
370
368
ast .JoinedStr : self ._eval_joinedstr ,
371
369
ast .FormattedValue : self ._eval_formattedvalue ,
372
370
ast .Constant : self ._eval_constant ,
373
371
}
374
372
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
+
375
384
# Defaults:
376
385
377
386
self .ATTR_INDEX_FALLBACK = ATTR_INDEX_FALLBACK
0 commit comments