Skip to content

Commit eefcbdf

Browse files
committed
Remove remnants of earlier PR
1 parent 97c6cdc commit eefcbdf

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed

Doc/library/dis.rst

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff 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

209209
Analysis functions
@@ -857,22 +857,14 @@ container object remains on the stack so that it is available for further
857857
iterations 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`.

0 commit comments

Comments
 (0)