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
25699f99
Commit
25699f99
authored
Aug 17, 2000
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Martin v. Loewis <martin@loewis.home.cs.tu-berlin.de>:
Document opcodes added to support extended call syntax.
parent
5119a0bc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
Doc/lib/libdis.tex
Doc/lib/libdis.tex
+19
-0
No files found.
Doc/lib/libdis.tex
View file @
25699f99
...
...
@@ -513,3 +513,22 @@ is 2, \code{slice(TOS1, TOS)} is pushed; if it is 3,
\code
{
slice(TOS2, TOS1, TOS)
}
is pushed.
See the
\code
{
slice()
}
\bifuncindex
{
slice
}
built-in function.
\end{opcodedesc}
\begin{opcodedesc}
{
CALL
_
FUNCTION
_
VAR
}{
argc
}
Calls a function.
\var
{
argc
}
is interpreted as in
\code
{
CALL
_
FUNCTION
}
.
The top element on the stack contains the variable argument list, followed
by keyword and positional arguments.
\end{opcodedesc}
\begin{opcodedesc}
{
CALL
_
FUNCTION
_
KW
}{
argc
}
Calls a function.
\var
{
argc
}
is interpreted as in
\code
{
CALL
_
FUNCTION
}
.
The top element on the stack contains the keyword arguments dictionary,
followed by explicit keyword and positional arguments.
\end{opcodedesc}
\begin{opcodedesc}
{
CALL
_
FUNCTION
_
VAR
_
KW
}{
argc
}
Calls a function.
\var
{
argc
}
is interpreted as in
\code
{
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.
\end{opcodedesc}
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