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 dalke
Recipients dalke, gvanrossum, ncoghlan, nnorwitz
Date 2008-02-05.03:21:10
SpamBayes Score 0.022908395
Marked as misclassified No
Message-id <1202181672.31.0.71879582174.issue2011@psf.upfronthosting.co.za>
In-reply-to
Content
This really is a minor point.  I don't track the 3K list and I see now that the 
compiler module won't be in Python 3k - good riddance - so feel free to discard 
this as well as the other open compiler module bugs.

I want to experiment with adding instrumentation for branch coverage.  To do that I 
want to get the character ranges of each term in the AST.  The Python compiler 
module doesn't keep track of that so I'm developing a new parser based on PLY.

I've developed it and I'm now cross-checking the generated ASTs to verify they are 
identical.  In this case the compiler module generates an extra node in the AST so 
I had to add backwards compatibility support.
History
Date User Action Args
2008-02-05 03:21:12dalkesetspambayes_score: 0.0229084 -> 0.022908395
recipients: + dalke, gvanrossum, nnorwitz, ncoghlan
2008-02-05 03:21:12dalkesetspambayes_score: 0.0229084 -> 0.0229084
messageid: <1202181672.31.0.71879582174.issue2011@psf.upfronthosting.co.za>
2008-02-05 03:21:11dalkelinkissue2011 messages
2008-02-05 03:21:10dalkecreate