From e7086d409e846254df5cc89b505cbd0804d45c5e Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Fri, 17 Mar 2006 08:59:09 +0000 Subject: INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used). --- Lib/compiler/pycodegen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/compiler') diff --git a/Lib/compiler/pycodegen.py b/Lib/compiler/pycodegen.py index e34120ef5d..aac2dda7e2 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', -- cgit v1.2.1