Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Doc/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ sphinx~=8.2.0

blurb

sphinxext-opengraph~=0.10.0
sphinxext-opengraph~=0.11.0
sphinx-notfound-page~=1.0.0

# The theme used by the documentation is stored separately, so we need
Expand Down
8 changes: 7 additions & 1 deletion Tools/cases_generator/interpreter_definition.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,13 @@ list of annotations and their meanings are as follows:
* `override`. For external use by other interpreter definitions to override the current
instruction definition.
* `pure`. This instruction has no side effects.
* 'tierN'. This instruction is only used by the tier N interpreter.
* `tierN`. This instruction is only used by the tier N interpreter.
* `specializing`. A prefix for an instructions related to adaptive interpreter.
* `replaced`. This instruction will be replaced in the final bytecode by its directed
version (either forward or backward).
* `register`. Currently does nothing.
* `replicate(N)`. Replicate the instruction N times to store the oparg "inside" the instruction.
* `no_save_ip`. This instruction does not affect the instruction pointer.

### Special functions/macros

Expand Down
Loading