What's the format of the intermediate instruction in CPython?
For example, 0 STORE_NAME 0 (sys)
is part of the instruction for import sys
. Is there any documentation for this instruction format? What's more, is this format a standard of开发者_如何学运维 Python? Or implementation specific?
That is Python bytecode. It is specific to CPython, and even to specific versions.
精彩评论