mirror of
https://github.com/python/cpython.git
synced 2026-01-27 21:25:12 +00:00
When producing the bytecode of exception handlers with name binding (like `except Exception as e`) we need to produce a try-finally block to make sure that the name is deleted after the handler is executed to prevent cycles in the stack frame objects. The bytecode associated with this try-finally block does not have source lines associated and it was causing problems when the tracing functionality was running over it.
Miscellaneous source files for the main Python shared library