Documentation
The module documentation for dis normally contains documentation for all non-specialized bytecode instructions.
However, many of the new bytecode instructions added in 3.14 (BUILD_INTERPOLATION, NOT_TAKEN, etc) are missing from the 3.14 module docs. Some changes to existing instructions like CALL_FUNCTION_EX are also undocumented.
Based on pycore_magic_number.h, it appears all changes after Python 3.14a2 with magic number 3609 are undocumented. Changes before this, like the addition of LOAD_SMALL_INT are correctly documented.
Linked PRs
Documentation
The module documentation for
disnormally contains documentation for all non-specialized bytecode instructions.However, many of the new bytecode instructions added in 3.14 (
BUILD_INTERPOLATION,NOT_TAKEN, etc) are missing from the 3.14 module docs. Some changes to existing instructions likeCALL_FUNCTION_EXare also undocumented.Based on pycore_magic_number.h, it appears all changes after Python 3.14a2 with magic number 3609 are undocumented. Changes before this, like the addition of
LOAD_SMALL_INTare correctly documented.Linked PRs
NOT_TAKEN&POP_ITERbytecode instructions #135803NOT_TAKEN&POP_ITERbytecode instructions (GH-135803) #139399