INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used).

This commit is contained in:
Neal Norwitz 2006-03-17 08:59:09 +00:00
parent 712ce45415
commit e7086d409e
5 changed files with 3 additions and 9 deletions

View file

@ -999,7 +999,7 @@ class CodeGenerator:
'+=' : 'INPLACE_ADD',
'-=' : 'INPLACE_SUBTRACT',
'*=' : 'INPLACE_MULTIPLY',
'/=' : 'INPLACE_DIVIDE',
'/=' : 'INPLACE_TRUE_DIVIDE',
'//=': 'INPLACE_FLOOR_DIVIDE',
'%=' : 'INPLACE_MODULO',
'**=': 'INPLACE_POWER',

View file

@ -88,7 +88,7 @@ def_op('DELETE_SLICE+3', 53)
def_op('INPLACE_ADD', 55)
def_op('INPLACE_SUBTRACT', 56)
def_op('INPLACE_MULTIPLY', 57)
def_op('INPLACE_DIVIDE', 58)
def_op('INPLACE_MODULO', 59)
def_op('STORE_SUBSCR', 60)
def_op('DELETE_SUBSCR', 61)