summaryrefslogtreecommitdiff
path: root/Lib/opcode.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-03-17 08:59:09 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2006-03-17 08:59:09 +0000
commite7086d409e846254df5cc89b505cbd0804d45c5e (patch)
treea2e42f44f07dd2965beaba57679b293e287b7927 /Lib/opcode.py
parent712ce454156496e9bcd32cffde78d1626b102010 (diff)
downloadcpython-git-e7086d409e846254df5cc89b505cbd0804d45c5e.tar.gz
INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used).
Diffstat (limited to 'Lib/opcode.py')
-rw-r--r--Lib/opcode.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/opcode.py b/Lib/opcode.py
index 2b9212f75b..573a7b04be 100644
--- a/Lib/opcode.py
+++ b/Lib/opcode.py
@@ -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)