File tree Expand file tree Collapse file tree 1 file changed +3
-11
lines changed Expand file tree Collapse file tree 1 file changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ the following command can be used to display the disassembly of
7676 3 LOAD_GLOBAL 1 (len + NULL)
7777 LOAD_FAST 0 (alist)
7878 CALL 1
79- RETURN_VALUE_FUNC
79+ RETURN_VALUE
8080
8181(The "2" is a line number).
8282
@@ -203,7 +203,7 @@ Example:
203203 LOAD_GLOBAL
204204 LOAD_FAST
205205 CALL
206- RETURN_VALUE_FUNC
206+ RETURN_VALUE
207207
208208
209209Analysis functions
@@ -857,22 +857,14 @@ container object remains on the stack so that it is available for further
857857iterations of the loop.
858858
859859
860- .. opcode :: RETURN_VALUE_FUNC
860+ .. opcode :: RETURN_VALUE
861861
862862 Returns with ``STACK[-1] `` to the caller of the function.
863863 Used in normal functions.
864864
865865 .. versionadded :: 3.14
866866
867867
868- .. opcode :: RETURN_VALUE_GEN
869-
870- Returns with ``STACK[-1] `` to the caller of the generator.
871- Used in generator functions.
872-
873- .. versionadded :: 3.14
874-
875-
876868.. opcode :: YIELD_VALUE
877869
878870 Yields ``STACK.pop() `` from a :term: `generator `.
You can’t perform that action at this time.
0 commit comments