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',