mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-19 00:07:26 +03:00
16 lines
561 B
Diff
16 lines
561 B
Diff
diff --git a/joblib/_utils.py b/joblib/_utils.py
|
|
index 7693310e0..6cd99ad31 100644
|
|
--- a/joblib/_utils.py
|
|
+++ b/joblib/_utils.py
|
|
@@ -35,8 +35,8 @@ def eval_expr(expr):
|
|
|
|
|
|
def eval_(node):
|
|
- if isinstance(node, ast.Num): # <number>
|
|
- return node.n
|
|
+ if isinstance(node, ast.Constant): # <constant>
|
|
+ return node.value
|
|
elif isinstance(node, ast.BinOp): # <left> <operator> <right>
|
|
return operators[type(node.op)](eval_(node.left), eval_(node.right))
|
|
elif isinstance(node, ast.UnaryOp): # <operator> <operand> e.g., -1
|