Hi, On Thu, 28 Oct 2021 at 00:28, M A <[email protected]> wrote: > That could be it. If that is the case how would I take apart the argument > from the opcode?
On recent Python 3 versions each instruction is two bytes in length, the lower byte being the opcode and the higher byte being a (possibly always zero) argument. The value 320 is equal to opcode 64 and higher byte 1. Armin _______________________________________________ pypy-dev mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-dev
