mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
gh-105481: Generate the opcode lists in dis from data extracted from bytecodes.c (#106758)
This commit is contained in:
parent
3535ef1eec
commit
40f3f11a77
16 changed files with 402 additions and 158 deletions
|
@ -1803,15 +1803,12 @@ instructions:
|
|||
Sequence of bytecodes that access an attribute by name.
|
||||
|
||||
|
||||
.. data:: hasjrel
|
||||
.. data:: hasjump
|
||||
|
||||
Sequence of bytecodes that have a relative jump target.
|
||||
|
||||
|
||||
.. data:: hasjabs
|
||||
|
||||
Sequence of bytecodes that have an absolute jump target.
|
||||
Sequence of bytecodes that have a jump target. All jumps
|
||||
are relative.
|
||||
|
||||
.. versionadded:: 3.13
|
||||
|
||||
.. data:: haslocal
|
||||
|
||||
|
@ -1827,3 +1824,20 @@ instructions:
|
|||
Sequence of bytecodes that set an exception handler.
|
||||
|
||||
.. versionadded:: 3.12
|
||||
|
||||
|
||||
.. data:: hasjrel
|
||||
|
||||
Sequence of bytecodes that have a relative jump target.
|
||||
|
||||
.. deprecated:: 3.13
|
||||
All jumps are now relative. Use :data:`hasjump`.
|
||||
|
||||
|
||||
.. data:: hasjabs
|
||||
|
||||
Sequence of bytecodes that have an absolute jump target.
|
||||
|
||||
.. deprecated:: 3.13
|
||||
All jumps are now relative. This list is empty.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue