[jsinterp] Correct div command
parent
04edb9caf5
commit
8cfb6efe6f
|
@ -17,7 +17,7 @@ _OPERATORS = [
|
||||||
('-', operator.sub),
|
('-', operator.sub),
|
||||||
('+', operator.add),
|
('+', operator.add),
|
||||||
('%', operator.mod),
|
('%', operator.mod),
|
||||||
('/', operator.div),
|
('/', operator.truediv),
|
||||||
('*', operator.mul),
|
('*', operator.mul),
|
||||||
]
|
]
|
||||||
_ASSIGN_OPERATORS = [(op + '=', opfunc) for op, opfunc in _OPERATORS]
|
_ASSIGN_OPERATORS = [(op + '=', opfunc) for op, opfunc in _OPERATORS]
|
||||||
|
|
Loading…
Reference in New Issue