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 collinwinter
Recipients abbeyj, collinwinter, jyasskin, pitrou, rhettinger
Date 2009-06-10.16:26:28
SpamBayes Score 0.0026204868
Marked as misclassified No
Message-id <1244651190.56.0.678527692587.issue6250@psf.upfronthosting.co.za>
In-reply-to
Content
As another data point, Unladen Swallow had to take explicit steps to
deal with this dead code when compiling bytecode to machine code. Since
Python's compiler isn't smart enough to ignore code following a "return"
or "raise" in the same suite, support for that had to percolate into our
compiler.

For me, it's cleanliness issue, not a performance issue. That certainly
lowers the priority, though.

The warning James is adding for dead code detection may also be useful;
it looks to have already found one bug in the stdlib.
History
Date User Action Args
2009-06-10 16:26:31collinwintersetrecipients: + collinwinter, rhettinger, pitrou, jyasskin, abbeyj
2009-06-10 16:26:30collinwintersetmessageid: <1244651190.56.0.678527692587.issue6250@psf.upfronthosting.co.za>
2009-06-10 16:26:29collinwinterlinkissue6250 messages
2009-06-10 16:26:28collinwintercreate