Get rid of last vestiges of BINARY_DIVIDE.

This commit is contained in:
Neal Norwitz 2006-03-16 06:02:10 +00:00
parent e4993c7ac7
commit c6d210ca76
6 changed files with 3 additions and 29 deletions

View file

@ -479,11 +479,6 @@ fold_binops_on_constants(unsigned char *codestr, PyObject *consts)
case BINARY_MULTIPLY:
newconst = PyNumber_Multiply(v, w);
break;
case BINARY_DIVIDE:
/* Cannot fold this operation statically since
the result can depend on the run-time presence
of the -Qnew flag */
return 0;
case BINARY_TRUE_DIVIDE:
newconst = PyNumber_TrueDivide(v, w);
break;
@ -1302,7 +1297,6 @@ opcode_stack_effect(int opcode, int oparg)
case BINARY_POWER:
case BINARY_MULTIPLY:
case BINARY_DIVIDE:
case BINARY_MODULO:
case BINARY_ADD:
case BINARY_SUBTRACT: