File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ \subsection{Python Byte Code Instructions}
154154\end {opcodedesc }
155155
156156\begin {opcodedesc }{UNARY_INVERT}{}
157- Implements \code {TOS = \~ TOS}.
157+ Implements \code {TOS = \~ {} TOS}.
158158\end {opcodedesc }
159159
160160Binary operations remove the top of the stack (TOS) and the second top-most
@@ -174,7 +174,7 @@ \subsection{Python Byte Code Instructions}
174174\end {opcodedesc }
175175
176176\begin {opcodedesc }{BINARY_MODULO}{}
177- Implements \code {TOS = TOS1 \% TOS}.
177+ Implements \code {TOS = TOS1 \% {} TOS}.
178178\end {opcodedesc }
179179
180180\begin {opcodedesc }{BINARY_ADD}{}
@@ -198,15 +198,15 @@ \subsection{Python Byte Code Instructions}
198198\end {opcodedesc }
199199
200200\begin {opcodedesc }{BINARY_AND}{}
201- Implements \code {TOS = TOS1 and TOS}.
201+ Implements \code {TOS = TOS1 \&\ TOS}.
202202\end {opcodedesc }
203203
204204\begin {opcodedesc }{BINARY_XOR}{}
205205Implements \code {TOS = TOS1 \^\ TOS}.
206206\end {opcodedesc }
207207
208208\begin {opcodedesc }{BINARY_OR}{}
209- Implements \code {TOS = TOS1 or TOS}.
209+ Implements \code {TOS = TOS1 | TOS}.
210210\end {opcodedesc }
211211
212212The slice opcodes take up to three parameters.
You can’t perform that action at this time.
0 commit comments