]> granicus.if.org Git - python/commit
When running python -O, do not include blocks defined in asserts in
authorJeremy Hylton <jeremy@alum.mit.edu>
Mon, 19 Feb 2001 15:50:51 +0000 (15:50 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Mon, 19 Feb 2001 15:50:51 +0000 (15:50 +0000)
commit384639f80ec8154333b42063bb769296b3a708ca
tree6c41dd203754f65d6a17852b29fd5734c3519ff0
parent4779399e9f4ff6fe7734fa9931aa6df82a98da24
When running python -O, do not include blocks defined in asserts in
the symbol table pass.  These blocks were already ignored by the code
gen pass.  Both passes must visit the same set of blocks in the same
order.

Fixes SF buf 132820
Python/compile.c