summaryrefslogtreecommitdiffstats
path: root/Lib/compiler
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-03-17 08:59:09 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-03-17 08:59:09 (GMT)
commite7086d409e846254df5cc89b505cbd0804d45c5e (patch)
treea2e42f44f07dd2965beaba57679b293e287b7927 /Lib/compiler
parent712ce454156496e9bcd32cffde78d1626b102010 (diff)
downloadcpython-e7086d409e846254df5cc89b505cbd0804d45c5e.zip
cpython-e7086d409e846254df5cc89b505cbd0804d45c5e.tar.gz
cpython-e7086d409e846254df5cc89b505cbd0804d45c5e.tar.bz2
INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used).
Diffstat (limited to 'Lib/compiler')
-rw-r--r--Lib/compiler/pycodegen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/compiler/pycodegen.py b/Lib/compiler/pycodegen.py
index e34120e..aac2dda 100644
--- a/Lib/compiler/pycodegen.py
+++ b/Lib/compiler/pycodegen.py
@@ -999,7 +999,7 @@ class CodeGenerator:
'+=' : 'INPLACE_ADD',
'-=' : 'INPLACE_SUBTRACT',
'*=' : 'INPLACE_MULTIPLY',
- '/=' : 'INPLACE_DIVIDE',
+ '/=' : 'INPLACE_TRUE_DIVIDE',
'//=': 'INPLACE_FLOOR_DIVIDE',
'%=' : 'INPLACE_MODULO',
'**=': 'INPLACE_POWER',