Skip to content

Commit b16cc40

Browse files
authored
Merge pull request #160 from danthedeckie/3.14-fixes
3.14 (prerelease) fixes
2 parents d65091a + 7bf2739 commit b16cc40

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
- '3.11'
3030
- '3.12'
3131
- '3.13'
32+
- '3.14'
3233
- 'pypy-3.9'
3334
- 'pypy-3.10'
3435
env:

simpleeval.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -386,13 +386,13 @@ def __init__(self, operators=None, functions=None, names=None):
386386
warnings.simplefilter("ignore")
387387
# py3.12 deprecated ast.Num, ast.Str, ast.NameConstant
388388
# https://docs.python.org/3.12/whatsnew/3.12.html#deprecated
389-
if Num := getattr(ast, "Num"):
389+
if Num := getattr(ast, "Num", None):
390390
self.nodes[Num] = self._eval_num
391391

392-
if Str := getattr(ast, "Str"):
392+
if Str := getattr(ast, "Str", None):
393393
self.nodes[Str] = self._eval_str
394394

395-
if NameConstant := getattr(ast, "NameConstant"):
395+
if NameConstant := getattr(ast, "NameConstant", None):
396396
self.nodes[NameConstant] = self._eval_constant
397397

398398
# Defaults:

0 commit comments

Comments
 (0)