Bug report
Bug description:
def x(tz_str):
try:
start, end = 1, 2
except ValueError as e:
raise Exception()
return f(start, end)
This should produce a LOAD_FAST_BORROWED_LOAD_FAST_BORROWED opcode for loading start and end, but instead it produces LOAD_FAST_LOAD_FAST
CPython versions tested on:
3.14, CPython main branch
Operating systems tested on:
Linux
Linked PRs
Bug report
Bug description:
This should produce a
LOAD_FAST_BORROWED_LOAD_FAST_BORROWEDopcode for loading start and end, but instead it producesLOAD_FAST_LOAD_FASTCPython versions tested on:
3.14, CPython main branch
Operating systems tested on:
Linux
Linked PRs