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 mark.dickinson
Recipients Ringding, ajaksu2, alexandre.vassalotti, bboissin, belopolsky, blaisorblade, christian.heimes, collinwinter, djc, facundobatista, gregory.p.smith, jyasskin, kevinwatters, lemburg, mark.dickinson, pitrou, ralph.corderoy, rhettinger, skip.montanaro, spiv, theatrus
Date 2009-01-30.19:04:28
SpamBayes Score 5.4881493e-06
Marked as misclassified No
Message-id <1233342270.52.0.457682539909.issue4753@psf.upfronthosting.co.za>
In-reply-to
Content
The x86 gentoo buildbot is failing to compile, with error:

/Python/makeopcodetargets.py ./Python/opcode_targets.h
  File "./Python/makeopcodetargets.py", line 28
    f.write(",\n".join("\t&&%s" % s for s in targets))
                                      ^
SyntaxError: invalid syntax
make: *** [Python/opcode_targets.h] Error 1

I suspect that it's because the system Python on this buildbot is Python 
2.3, which doesn't understand generator expressions.  Are there any 
objections to me adding a couple of square brackets to this line to turn 
the argument of join into a list comprehension?
History
Date User Action Args
2009-01-30 19:04:30mark.dickinsonsetrecipients: + mark.dickinson, lemburg, skip.montanaro, collinwinter, rhettinger, facundobatista, gregory.p.smith, spiv, belopolsky, pitrou, christian.heimes, ajaksu2, alexandre.vassalotti, jyasskin, kevinwatters, djc, ralph.corderoy, bboissin, blaisorblade, theatrus, Ringding
2009-01-30 19:04:30mark.dickinsonsetmessageid: <1233342270.52.0.457682539909.issue4753@psf.upfronthosting.co.za>
2009-01-30 19:04:28mark.dickinsonlinkissue4753 messages
2009-01-30 19:04:28mark.dickinsoncreate