diff options
author | Fred Drake <fdrake@acm.org> | 2000-10-10 22:00:03 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-10-10 22:00:03 (GMT) |
commit | 2c4f554b7863ac47b8e10dd4a942bb7bc3e6b3e3 (patch) | |
tree | becacb0e5705244d69459c0a3057b3f5ec64ab0f /Doc/lib/libdis.tex | |
parent | e693df94ed50e5083742b8c3bcb490c6b7fe03ac (diff) | |
download | cpython-2c4f554b7863ac47b8e10dd4a942bb7bc3e6b3e3.zip cpython-2c4f554b7863ac47b8e10dd4a942bb7bc3e6b3e3.tar.gz cpython-2c4f554b7863ac47b8e10dd4a942bb7bc3e6b3e3.tar.bz2 |
Fixed a large number of small problems, mostly noted by Detlef Lannert
<lannert@lannert.rz.uni-duesseldorf.de>.
Diffstat (limited to 'Doc/lib/libdis.tex')
-rw-r--r-- | Doc/lib/libdis.tex | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/Doc/lib/libdis.tex b/Doc/lib/libdis.tex index 2dd74bd..7fc831a 100644 --- a/Doc/lib/libdis.tex +++ b/Doc/lib/libdis.tex @@ -2,8 +2,7 @@ Disassembler for Python byte code} \declaremodule{standard}{dis} -\modulesynopsis{Disassembler for Python byte code, as stored in code - objects and \file{.pyc}/\file{.pyo} files.} +\modulesynopsis{Disassembler for Python byte code.} The \module{dis} module supports the analysis of Python byte code by @@ -35,7 +34,7 @@ the following command can be used to get the disassembly of 19 RETURN_VALUE \end{verbatim} -The \module{dis} module defines the following functions: +The \module{dis} module defines the following functions and constants: \begin{funcdesc}{dis}{\optional{bytesource}} Disassemble the \var{bytesource} object. \var{bytesource} can denote @@ -75,7 +74,7 @@ for compatibility with earlier Python releases. \end{funcdesc} \begin{datadesc}{opname} -Sequence of a operation names, indexable using the byte code. +Sequence of operation names, indexable using the byte code. \end{datadesc} \begin{datadesc}{cmp_op} @@ -87,7 +86,7 @@ Sequence of byte codes that have a constant parameter. \end{datadesc} \begin{datadesc}{hasname} -Sequence of byte codes that access a attribute by name. +Sequence of byte codes that access an attribute by name. \end{datadesc} \begin{datadesc}{hasjrel} @@ -99,7 +98,7 @@ Sequence of byte codes that have an absolute jump target. \end{datadesc} \begin{datadesc}{haslocal} -Sequence of byte codes that access a a local variable. +Sequence of byte codes that access a local variable. \end{datadesc} \begin{datadesc}{hascompare} @@ -196,11 +195,11 @@ Implements \code{TOS = TOS1[TOS]}. \end{opcodedesc} \begin{opcodedesc}{BINARY_LSHIFT}{} -Implements \code{TOS = TOS1 << TOS}. +Implements \code{TOS = TOS1 <\code{}< TOS}. \end{opcodedesc} \begin{opcodedesc}{BINARY_RSHIFT}{} -Implements \code{TOS = TOS1 >> TOS}. +Implements \code{TOS = TOS1 >\code{}> TOS}. \end{opcodedesc} \begin{opcodedesc}{BINARY_AND}{} @@ -245,11 +244,11 @@ Implements in-place \code{TOS = TOS1 - TOS}. \end{opcodedesc} \begin{opcodedesc}{INPLACE_LSHIFT}{} -Implements in-place \code{TOS = TOS1 << TOS}. +Implements in-place \code{TOS = TOS1 <\code{}< TOS}. \end{opcodedesc} \begin{opcodedesc}{INPLACE_RSHIFT}{} -Implements in-place \code{TOS = TOS1 >> TOS}. +Implements in-place \code{TOS = TOS1 >\code{}> TOS}. \end{opcodedesc} \begin{opcodedesc}{INPLACE_AND}{} |