Skip to content

Commit b0ec986

Browse files
committed
Add allowed_attrs to EvalWithCompoundTypes too
1 parent fb2d9dc commit b0ec986

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

simpleeval.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -813,8 +813,8 @@ class EvalWithCompoundTypes(SimpleEval):
813813

814814
_max_count = 0
815815

816-
def __init__(self, operators=None, functions=None, names=None):
817-
super(EvalWithCompoundTypes, self).__init__(operators, functions, names)
816+
def __init__(self, operators=None, functions=None, names=None, allowed_attrs=None):
817+
super(EvalWithCompoundTypes, self).__init__(operators, functions, names, allowed_attrs)
818818

819819
self.functions.update(list=list, tuple=tuple, dict=dict, set=set)
820820

0 commit comments

Comments
 (0)