Hi, On Thu, 28 Oct 2021 at 00:28, M A <teammember0...@gmail.com> 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 pypy-dev@python.org https://mail.python.org/mailman/listinfo/pypy-dev