INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used).

This commit is contained in:
Neal Norwitz 2006-03-17 08:59:09 +00:00
parent 712ce45415
commit e7086d409e
5 changed files with 3 additions and 9 deletions

View file

@ -247,11 +247,6 @@ Implements in-place \code{TOS = TOS1 ** TOS}.
Implements in-place \code{TOS = TOS1 * TOS}.
\end{opcodedesc}
\begin{opcodedesc}{INPLACE_DIVIDE}{}
Implements in-place \code{TOS = TOS1 / TOS} when
\code{from __future__ import division} is not in effect.
\end{opcodedesc}
\begin{opcodedesc}{INPLACE_FLOOR_DIVIDE}{}
Implements in-place \code{TOS = TOS1 // TOS}.
\end{opcodedesc}