Re: Is CONTINUE_LOOP still a thing?

2020-06-09 Thread Terry Reedy
On 6/9/2020 3:26 AM, Adam Preble wrote: Well, I found CONTINUE_LOOP In opcode.py for 3.6.8 with value 119, annotated as an absolute jump. Everything in this file is use-at-your-own-risk internal cpython detail, subject to change with any release. 3.6.8 sure doesn't emit it for pretty

Is CONTINUE_LOOP still a thing?

2020-06-09 Thread Adam Preble
I got to the point of trying to implement continue in my own interpreter project and was surprised when my for-loop just used some jumps to manage its control flow. Actually, I hoped for something else; I don't have logic in my code generation to track jump positions. I kind of hoped there was