diff options
| author | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-17 08:59:09 (GMT) |
|---|---|---|
| committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-17 08:59:09 (GMT) |
| commit | e7086d409e846254df5cc89b505cbd0804d45c5e (patch) | |
| tree | a2e42f44f07dd2965beaba57679b293e287b7927 /Python | |
| parent | 712ce454156496e9bcd32cffde78d1626b102010 (diff) | |
| download | cpython-e7086d409e846254df5cc89b505cbd0804d45c5e.zip cpython-e7086d409e846254df5cc89b505cbd0804d45c5e.tar.gz cpython-e7086d409e846254df5cc89b505cbd0804d45c5e.tar.bz2 | |
INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used).
Diffstat (limited to 'Python')
| -rw-r--r-- | Python/compile.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c index 9ce2bf7..b92fb62 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: |
