From 712ce454156496e9bcd32cffde78d1626b102010 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Fri, 17 Mar 2006 08:57:43 +0000 Subject: _Py_QnewFlag and INPLACE_DIVIDE are not necessary any longer --- Python/ceval.c | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'Python/ceval.c') diff --git a/Python/ceval.c b/Python/ceval.c index 1a3561016c3..6f767812c2a 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -1262,19 +1262,6 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throw) if (x != NULL) continue; break; - case INPLACE_DIVIDE: - if (!_Py_QnewFlag) { - w = POP(); - v = TOP(); - x = PyNumber_InPlaceDivide(v, w); - Py_DECREF(v); - Py_DECREF(w); - SET_TOP(x); - if (x != NULL) continue; - break; - } - /* -Qnew is in effect: fall through to - INPLACE_TRUE_DIVIDE */ case INPLACE_TRUE_DIVIDE: w = POP(); v = TOP(); -- cgit v1.2.3