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 paul.j3
Recipients eli.bendersky, ezio.melotti, paul.j3, pitrou, skip.montanaro
Date 2014-08-24.22:37:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1408919864.26.0.144404442201.issue21480@psf.upfronthosting.co.za>
In-reply-to
Content
I ran into a (possibly) related compiling problem (for 'default', 3.5 branch) in `asdl.py`:

    class Module(AST):
        def __init__(self, name, dfns):
            ...
            self.types = {type.name: type.value for type in dfns}

The dictionary comprehension syntax means this can only be run with Python3.

With an older Ubuntu installation, python2.6 is my default 'python'.

I had to make a local `python3` link to an earlier development python3.4 to get around this.
History
Date User Action Args
2014-08-24 22:37:44paul.j3setrecipients: + paul.j3, skip.montanaro, pitrou, ezio.melotti, eli.bendersky
2014-08-24 22:37:44paul.j3setmessageid: <1408919864.26.0.144404442201.issue21480@psf.upfronthosting.co.za>
2014-08-24 22:37:44paul.j3linkissue21480 messages
2014-08-24 22:37:44paul.j3create