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 trent
Recipients Arfrever, doko, ezio.melotti, python-dev, r.david.murray, rpetrov, trent
Date 2012-10-24.12:22:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <20121024122236.GC5339@snakebite.org>
In-reply-to <1350856777.4.0.505703402765.issue16262@psf.upfronthosting.co.za>
Content
On Sun, Oct 21, 2012 at 02:59:37PM -0700, R. David Murray wrote:
> 
> R. David Murray added the comment:
> 
> This change appears to have broken the dmg builders:
> 
>   http://buildbot.python.org/all/builders/bolen-dmg-3.x/builds/19
>   http://buildbot.python.org/all/builders/bolen-dmg-3.3/builds/17

    Ah, relevant error:

creating Makefile
Traceback (most recent call last):
  File "/Users/db3l/buildarea.dmg/bolen-dmg-3.x/build/Parser/asdl_c.py", line 1254, in ?
    main(args[0])
  File "/Users/db3l/buildarea.dmg/bolen-dmg-3.x/build/Parser/asdl_c.py", line 1203, in main
    c = ChainOfVisitors(TypeDefVisitor(f),
  File "/Users/db3l/buildarea.dmg/bolen-dmg-3.x/build/Parser/asdl_c.py", line 87, in __init__
    self.identifiers = set()
NameError: global name 'set' is not defined
make: *** [Include/Python-ast.h] Error 1
Running make

    So, it's not that it broke the daily dmg builders per se, it's just
    that the version of Python being used to generate the ADSL on those
    boxes is old (and doesn't have set()).  I guess that means whatever
    Python version was picked up is <2.4?
History
Date User Action Args
2012-10-24 12:22:43trentsetrecipients: + trent, doko, ezio.melotti, rpetrov, Arfrever, r.david.murray, python-dev
2012-10-24 12:22:43trentlinkissue16262 messages
2012-10-24 12:22:42trentcreate