mirror of
https://github.com/python/cpython.git
synced 2026-01-27 13:15:25 +00:00
In certain cases it's possible for locals loaded by `LOAD_FAST` instructions to be on the stack when the local is killed by `DEL_FAST`. These `LOAD_FAST` instructions should not be optimized into `LOAD_FAST_BORROW` as the strong reference in the frame is killed while there is still a reference on the stack.
Miscellaneous source files for the main Python shared library