show/hide this revision's text 3 Rollback to Revision 1
[untested]
from operator import add, sub, mul, div
# read the docs; this is a tiny part of the operator module

dispatcher despatcher = {
    '+': add,
    '-': sub,
    # etc
    }

opfunc = dispatcher[op_chardespatcher[op_char]
operand2 = stack.pop()
# your - and / are bassackwards
stack[-1] = opfunc(stack[-1], operand2)
show/hide this revision's text 2 dispatcher
[untested]
from operator import add, sub, mul, div
# read the docs; this is a tiny part of the operator module

despatcher dispatcher = {
    '+': add,
    '-': sub,
    # etc
    }

opfunc = despatcher[op_chardispatcher[op_char]
operand2 = stack.pop()
# your - and / are bassackwards
stack[-1] = opfunc(stack[-1], operand2)
show/hide this revision's text 1
[untested]
from operator import add, sub, mul, div
# read the docs; this is a tiny part of the operator module

despatcher = {
    '+': add,
    '-': sub,
    # etc
    }

opfunc = despatcher[op_char]
operand2 = stack.pop()
# your - and / are bassackwards
stack[-1] = opfunc(stack[-1], operand2)