[Calc] Allow map function

master
Sfan5 2014-01-18 22:02:29 +01:00
parent 626b130186
commit 899d3e9c67
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ funcs = {
"bin": bin, "abs": abs, "oct": oct, "int": int, "sum": sum,
"tuple": tuple, "divmod": divmod, "hash": hash, "hex": hex,
"len": len, "list": list, "long": long, "max": max,
"range": range, "round": round, "min": min,
"range": range, "round": round, "min": min, "map": map,
# random functions
"betavariate": random.betavariate, "choice": random.choice,