mirror of
https://github.com/python/cpython.git
synced 2026-05-18 10:24:42 -04:00
565d78586b
In Python 2.x, exceptions in finally blocks are not normalized. Since with statements are implemented using finally blocks, ceval.c had to be tweaked to distinguish between with finally blocks and normal ones. A test for the finalization of generators containing with statements was also added.