Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-101100: [docs] Fix Sphinx warnings in dis module #102597

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Doc/library/dis.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ interpreter.
adaptive bytecode can be shown by passing ``adaptive=True``.


Example: Given the function :func:`myfunc`::
Example: Given the function ``myfunc``::

def myfunc(alist):
return len(alist)

the following command can be used to display the disassembly of
:func:`myfunc`:
``myfunc``:

.. doctest::

Expand Down Expand Up @@ -793,7 +793,7 @@ iterations of the loop.

.. opcode:: LOAD_BUILD_CLASS

Pushes :func:`builtins.__build_class__` onto the stack. It is later called
Pushes :func:`!builtins.__build_class__` onto the stack. It is later called
to construct a class.


Expand Down Expand Up @@ -851,13 +851,13 @@ iterations of the loop.
.. opcode:: STORE_NAME (namei)

Implements ``name = STACK.pop()``. *namei* is the index of *name* in the attribute
:attr:`co_names` of the code object. The compiler tries to use
:attr:`!codeobject.co_names` of the code object. The compiler tries to use
:opcode:`STORE_FAST` or :opcode:`STORE_GLOBAL` if possible.


.. opcode:: DELETE_NAME (namei)

Implements ``del name``, where *namei* is the index into :attr:`co_names`
Implements ``del name``, where *namei* is the index into :attr:`!co_names`
attribute of the code object.


Expand Down Expand Up @@ -896,7 +896,7 @@ iterations of the loop.
value = STACK.pop()
obj.name = value

where *namei* is the index of name in :attr:`co_names`.
where *namei* is the index of name in :attr:`!codeobject.co_names`.

.. opcode:: DELETE_ATTR (namei)

Expand All @@ -905,7 +905,7 @@ iterations of the loop.
obj = STACK.pop()
del obj.name

where *namei* is the index of name into :attr:`co_names`.
where *namei* is the index of name into :attr:`!codeobject.co_names`.


.. opcode:: STORE_GLOBAL (namei)
Expand Down