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 /Doc | |
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 'Doc')
-rw-r--r-- | Doc/lib/libdis.tex | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Doc/lib/libdis.tex b/Doc/lib/libdis.tex index a5b2c2c..19fda5b 100644 --- a/Doc/lib/libdis.tex +++ b/Doc/lib/libdis.tex @@ -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} |