@@ -43,13 +43,13 @@ interpreter.
43
43
adaptive bytecode can be shown by passing ``adaptive=True ``.
44
44
45
45
46
- Example: Given the function :func: `myfunc `::
46
+ Example: Given the function :func: `! myfunc `::
47
47
48
48
def myfunc(alist):
49
49
return len(alist)
50
50
51
51
the following command can be used to display the disassembly of
52
- :func: `myfunc `:
52
+ :func: `! myfunc `:
53
53
54
54
.. doctest ::
55
55
@@ -862,7 +862,7 @@ iterations of the loop.
862
862
863
863
.. opcode :: LOAD_BUILD_CLASS
864
864
865
- Pushes :func: `builtins.__build_class__ ` onto the stack. It is later called
865
+ Pushes :func: `! builtins.__build_class__ ` onto the stack. It is later called
866
866
to construct a class.
867
867
868
868
@@ -920,14 +920,14 @@ iterations of the loop.
920
920
.. opcode :: STORE_NAME (namei)
921
921
922
922
Implements ``name = STACK.pop() ``. *namei * is the index of *name * in the attribute
923
- :attr: `co_names ` of the code object. The compiler tries to use
924
- :opcode: `STORE_FAST ` or :opcode: `STORE_GLOBAL ` if possible.
923
+ :attr: `! co_names ` of the :ref: ` code object < code-objects >`.
924
+ The compiler tries to use :opcode: `STORE_FAST ` or :opcode: `STORE_GLOBAL ` if possible.
925
925
926
926
927
927
.. opcode :: DELETE_NAME (namei)
928
928
929
- Implements ``del name ``, where *namei * is the index into :attr: `co_names `
930
- attribute of the code object.
929
+ Implements ``del name ``, where *namei * is the index into :attr: `! co_names `
930
+ attribute of the :ref: ` code object < code-objects >` .
931
931
932
932
933
933
.. opcode :: UNPACK_SEQUENCE (count)
@@ -966,7 +966,8 @@ iterations of the loop.
966
966
value = STACK.pop()
967
967
obj.name = value
968
968
969
- where *namei * is the index of name in :attr: `co_names `.
969
+ where *namei * is the index of name in :attr: `!co_names ` of the
970
+ :ref: `code object <code-objects >`.
970
971
971
972
.. opcode :: DELETE_ATTR (namei)
972
973
@@ -975,7 +976,8 @@ iterations of the loop.
975
976
obj = STACK.pop()
976
977
del obj.name
977
978
978
- where *namei * is the index of name into :attr: `co_names `.
979
+ where *namei * is the index of name into :attr: `!co_names ` of the
980
+ :ref: `code object <code-objects >`.
979
981
980
982
981
983
.. opcode :: STORE_GLOBAL (namei)
0 commit comments