diff --git a/query_runner/python.py b/query_runner/python.py index cc8848e93a..8d37180091 100644 --- a/query_runner/python.py +++ b/query_runner/python.py @@ -39,8 +39,11 @@ def __call__(self): class Python(BaseQueryRunner): safe_builtins = ( - 'sorted', 'reversed', 'min', 'max', - 'sum', 'set', + 'sorted', 'reversed', 'map', 'reduce', 'any', 'all', + 'slice', 'filter', 'len', 'next', 'enumerate' + 'sum', 'abs', 'min', 'max', 'round', 'cmp', 'divmod' + 'str', 'unicode', 'int', 'float', 'complex', + 'tuple', 'set', 'list', 'dict', 'bool', ) @classmethod