This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Mark.Shannon
Recipients Mark.Shannon
Date 2020-12-22.14:08:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1608646093.23.0.458945572076.issue42719@roundup.psfhosted.org>
In-reply-to
Content
This will require a change to the internal line number table format.

PEP 626 requires all lines are traced, which makes handling of 'continue' and other jump-to-jumps inefficient if spread across multiple lines.

In 3.9 many jump-to-jumps were eliminated, but PEP 626 requires that many are converted to a NOP. Zero-width line number table entries will allow us to eliminate most, if not all, remaining NOPs in the assembler.
History
Date User Action Args
2020-12-22 14:08:13Mark.Shannonsetrecipients: + Mark.Shannon
2020-12-22 14:08:13Mark.Shannonsetmessageid: <1608646093.23.0.458945572076.issue42719@roundup.psfhosted.org>
2020-12-22 14:08:13Mark.Shannonlinkissue42719 messages
2020-12-22 14:08:12Mark.Shannoncreate