Change by Om G :
--
resolution: -> fixed
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.org/issue42615>
___
___
Change by Om G :
--
keywords: +patch
pull_requests: +22591
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/23733
___
Python tracker
<https://bugs.python.org/issu
New submission from Om G :
During optimization, the compiler deletes blocks that are marked as
unreachable. In doing so, it can render jump instructions that used to jump
over the now-deleted blocks redundant, since simply falling through to the next
non-empty block is now equivalent.
An