feat: Added truediv & mul operators
This commit is contained in:
parent
4da5fdcd02
commit
25bb945de7
1 changed files with 2 additions and 0 deletions
|
|
@ -169,6 +169,8 @@ OPERATOR_MAP: Dict[str, Callable] = {
|
|||
"=<": operator.le,
|
||||
">=": operator.ge,
|
||||
"=>": operator.ge,
|
||||
"/": operator.truediv,
|
||||
"*": operator.mul,
|
||||
"in": func_in,
|
||||
"not in": func_not_in,
|
||||
"like": like,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue