Skip to content

Commit 85b20d3

Browse files
committed
fix refwarn errors
1 parent 4bc6225 commit 85b20d3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Doc/library/dis.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1642,7 +1642,7 @@ iterations of the loop.
16421642

16431643
Pushes a ``NULL`` to the stack.
16441644
Used in the call sequence to match the ``NULL`` pushed by
1645-
:opcode:`LOAD_METHOD` for non-method calls.
1645+
:opcode:`!LOAD_METHOD` for non-method calls.
16461646

16471647
.. versionadded:: 3.11
16481648

Doc/whatsnew/3.14.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2845,7 +2845,7 @@ Pseudo-instructions
28452845
:ref:`deferred evaluation of annotations <whatsnew314-pep649>`.
28462846
(Contributed by Jelle Zijlstra in :gh:`130907`.)
28472847

2848-
* Add the :opcode:`BINARY_OP_EXTEND` pseudo instruction,
2848+
* Add the :opcode:`!BINARY_OP_EXTEND` pseudo instruction,
28492849
which executes a pair of functions (guard and specialization functions)
28502850
accessed from the inline cache.
28512851
(Contributed by Irit Katriel in :gh:`100239`.)
@@ -2861,7 +2861,7 @@ Pseudo-instructions
28612861
Replaced by the sequence ``COPY 1``, ``TO_BOOL``, ``POP_JUMP_IF_TRUE/FALSE``.
28622862
(Contributed by Irit Katriel in :gh:`124285`.)
28632863

2864-
* Add the :opcode:`LOAD_CONST_MORTAL` pseudo instruction.
2864+
* Add the :opcode:`!LOAD_CONST_MORTAL` pseudo instruction.
28652865
(Contributed by Mark Shannon in :gh:`128685`.)
28662866

28672867
* Add the :opcode:`!LOAD_CONST_IMMORTAL` pseudo instruction,

Doc/whatsnew/3.7.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2483,7 +2483,7 @@ avoiding possible problems use new functions :c:func:`PySlice_Unpack` and
24832483
CPython bytecode changes
24842484
------------------------
24852485

2486-
There are two new opcodes: :opcode:`LOAD_METHOD` and :opcode:`!CALL_METHOD`.
2486+
There are two new opcodes: :opcode:`!LOAD_METHOD` and :opcode:`!CALL_METHOD`.
24872487
(Contributed by Yury Selivanov and INADA Naoki in :issue:`26110`.)
24882488

24892489
The :opcode:`!STORE_ANNOTATION` opcode has been removed.

0 commit comments

Comments
 (0)