[Calc] Allow some more builtin functions

master
Sfan5 2014-01-30 18:57:54 +01:00
parent 3aea68ff52
commit 6702ceb2e6
1 changed files with 4 additions and 1 deletions

View File

@ -17,7 +17,10 @@ env = {
"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, "map": map
"range": range, "round": round, "min": min, "map": map,
"zip": zip, "xrange": xrange, "unicode": unicode,
"unichr": unichr, "type": type, "slice": slice, "ord": ord,
"chr": chr
}
libs = [