python / cpython

The Python programming language
https://www.python.org
Other
62.25k stars 29.91k forks source link

Several Python 3.13 opcodes are not documented #122838

Open MatthieuDartiailh opened 1 month ago

MatthieuDartiailh commented 1 month ago

Documentation

The following opcodes which can appear in the output of dis, do not appear in the documentation https://docs.python.org/3.13/library/dis.html:

Linked PRs

ZeroIntensity commented 1 month ago

Needs to be reflected in typeshed as well.

kamilturek commented 3 weeks ago

LOAD_FROM_DICT_OR_DECREF, LOAD_FROM_DICT_OR_GLOBALS are already documented.

I'll open a PR documenting LOAD_FAST_LOAD_FAST, STORE_FAST_STORE_FAST, STORE_FAST_LOAD_FAST.

I'm not quite sure what ENTER_EXECUTOR does.