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 vstinner
Recipients rhettinger, sdefresne, vstinner
Date 2012-09-06.20:42:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1346964164.35.0.569048701229.issue7682@psf.upfronthosting.co.za>
In-reply-to
Content
I'm working on a different approach: an AST optimizer. It is already able to replace "if __debug__ and x: ...." with "if x: ..." ("pythonenv" option must be enabled).
https://bitbucket.org/haypo/astoptimizer/
History
Date User Action Args
2012-09-06 20:42:44vstinnersetrecipients: + vstinner, rhettinger, sdefresne
2012-09-06 20:42:44vstinnersetmessageid: <1346964164.35.0.569048701229.issue7682@psf.upfronthosting.co.za>
2012-09-06 20:42:43vstinnerlinkissue7682 messages
2012-09-06 20:42:43vstinnercreate