Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
33d7b789
Commit
33d7b789
authored
Nov 11, 2014
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #22845: Improved formatting of dis documentation.
parent
ee528c85
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
Doc/library/dis.rst
Doc/library/dis.rst
+5
-5
No files found.
Doc/library/dis.rst
View file @
33d7b789
...
...
@@ -446,7 +446,7 @@ Miscellaneous opcodes.
Implements the expression statement for the interactive mode. TOS is removed
from the stack and printed. In non-interactive mode, an expression statement is
terminated with
``POP_STACK`
`.
terminated with
:opcode:`POP_TOP
`.
.. opcode:: PRINT_ITEM ()
...
...
@@ -481,7 +481,7 @@ Miscellaneous opcodes.
.. opcode:: CONTINUE_LOOP (target)
Continues a loop due to a :keyword:`continue` statement. *target* is the
address to jump to (which should be a
``FOR_ITER`
` instruction).
address to jump to (which should be a
:opcode:`FOR_ITER
` instruction).
.. opcode:: LIST_APPEND (i)
...
...
@@ -838,21 +838,21 @@ the more significant byte last.
.. opcode:: CALL_FUNCTION_VAR (argc)
Calls a function. *argc* is interpreted as in
``CALL_FUNCTION`
`. The top element
Calls a function. *argc* is interpreted as in
:opcode:`CALL_FUNCTION
`. The top element
on the stack contains the variable argument list, followed by keyword and
positional arguments.
.. opcode:: CALL_FUNCTION_KW (argc)
Calls a function. *argc* is interpreted as in
``CALL_FUNCTION`
`. The top element
Calls a function. *argc* is interpreted as in
:opcode:`CALL_FUNCTION
`. The top element
on the stack contains the keyword arguments dictionary, followed by explicit
keyword and positional arguments.
.. opcode:: CALL_FUNCTION_VAR_KW (argc)
Calls a function. *argc* is interpreted as in
``CALL_FUNCTION`
`. The top
Calls a function. *argc* is interpreted as in
:opcode:`CALL_FUNCTION
`. The top
element on the stack contains the keyword arguments dictionary, followed by the
variable-arguments tuple, followed by explicit keyword and positional arguments.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment