mirror of
https://github.com/python/cpython.git
synced 2025-08-29 21:25:01 +00:00
INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used).
This commit is contained in:
parent
712ce45415
commit
e7086d409e
5 changed files with 3 additions and 9 deletions
|
@ -999,7 +999,7 @@ class CodeGenerator:
|
|||
'+=' : 'INPLACE_ADD',
|
||||
'-=' : 'INPLACE_SUBTRACT',
|
||||
'*=' : 'INPLACE_MULTIPLY',
|
||||
'/=' : 'INPLACE_DIVIDE',
|
||||
'/=' : 'INPLACE_TRUE_DIVIDE',
|
||||
'//=': 'INPLACE_FLOOR_DIVIDE',
|
||||
'%=' : 'INPLACE_MODULO',
|
||||
'**=': 'INPLACE_POWER',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue