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 talljosh
Recipients talljosh
Date 2012-03-21.06:23:37
SpamBayes Score 0.020398442
Marked as misclassified No
Message-id <1332311018.21.0.078755224683.issue14378@psf.upfronthosting.co.za>
In-reply-to
Content
Incidentally, the workaround that I'm using for the time being is to run the following code before attempting to compile root_node.

for node in ast.walk(root_node):
    if isinstance(node, ast.ImportFrom) and node.module == '__future__':
        node.module = '__future__'
History
Date User Action Args
2012-03-21 06:23:38talljoshsetrecipients: + talljosh
2012-03-21 06:23:38talljoshsetmessageid: <1332311018.21.0.078755224683.issue14378@psf.upfronthosting.co.za>
2012-03-21 06:23:37talljoshlinkissue14378 messages
2012-03-21 06:23:37talljoshcreate