summaryrefslogtreecommitdiff
path: root/Python/compile.c
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
commitf975d6276c3bf09a76da8b9c8877779467b0a02e (patch)
tree5aa8de3703bf7d7f878bf9ba3c93af79c373c588 /Python/compile.c
parentc83315d27bcd2b9d7176320ce522d4b6e9b9421b (diff)
downloadcpython-f975d6276c3bf09a76da8b9c8877779467b0a02e.tar.gz
INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used).
Diffstat (limited to 'Python/compile.c')
-rw-r--r--Python/compile.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c
index 9ce2bf795f..b92fb62541 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -1338,7 +1338,6 @@ opcode_stack_effect(int opcode, int oparg)
case INPLACE_ADD:
case INPLACE_SUBTRACT:
case INPLACE_MULTIPLY:
- case INPLACE_DIVIDE:
case INPLACE_MODULO:
return -1;
case STORE_SUBSCR: