This repository was archived by the owner on Oct 12, 2022. It is now read-only.
This repository was archived by the owner on Oct 12, 2022. It is now read-only.
Look into improving looping bytecode #12
Open
Description
It has been said that the fact Python leaves something on the stack for each loop iteration is a bit of a pain for the CLR. Python's bytecode should probably be examined to see why the item is left on and if it is really worth keeping those semantics or if it would work out better to not leave the item on the stack and thus make the corresponding code in the JIT easier to work with.