diff options
author | Fred Drake <fdrake@acm.org> | 2000-08-31 16:26:35 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-08-31 16:26:35 (GMT) |
commit | 4c3f797128bdd6139390d0b3180bda41adca5db1 (patch) | |
tree | f357c3cf500682af2fa1591d7c01a4c2db081e28 /Doc | |
parent | a50d6ec623f675082fb11a5d53d7fd0de96f5c85 (diff) | |
download | cpython-4c3f797128bdd6139390d0b3180bda41adca5db1.zip cpython-4c3f797128bdd6139390d0b3180bda41adca5db1.tar.gz cpython-4c3f797128bdd6139390d0b3180bda41adca5db1.tar.bz2 |
UNARY_NEG is supposed to be UNARY_NEGATIVE (spotted by Charles Waldman
<cgw@fnal.gov>).
Fix minor problem with EXTENDED_ARG description markup..
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libdis.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libdis.tex b/Doc/lib/libdis.tex index 593daca..9d709ac 100644 --- a/Doc/lib/libdis.tex +++ b/Doc/lib/libdis.tex @@ -146,7 +146,7 @@ push the result back on the stack. Implements \code{TOS = +TOS}. \end{opcodedesc} -\begin{opcodedesc}{UNARY_NEG}{} +\begin{opcodedesc}{UNARY_NEGATIVE}{} Implements \code{TOS = -TOS}. \end{opcodedesc} @@ -595,7 +595,7 @@ information. Prefixes any opcode which has an argument too big to fit into the default two bytes. \var{ext} holds two additional bytes which, taken together with the subsequent opcode's argument, comprise a four-byte -argument, \var {ext} being the two most-significant bytes. +argument, \var{ext} being the two most-significant bytes. \end{opcodedesc} \begin{opcodedesc}{CALL_FUNCTION_VAR}{argc} |