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 barry
Recipients barry, georg.brandl, loewis
Date 2012-09-11.21:13:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1347398039.31.0.775610002592.issue15923@psf.upfronthosting.co.za>
In-reply-to
Content
After a fresh clone, configure && make fails due to a fairly obvious bug in the code.  Note that if you `hg revert --all`, configure && make will succeed, probably because the timestamps get updated enough to fool make.

@resist[~/projects/python:1043]% hg clone ssh://hg@hg.python.org/releasing/3.3.0
[...]
@resist[~/projects/python:1044]% cd 3.3.0/
@resist[~/projects/python/3.3.0:1045]% ./configure && make
[...]

gcc -pthread -c -Wno-unused-result -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes    -I. -I./Include    -DPy_BUILD_CORE -o Python/_warnings.o Python/_warnings.c
./Parser/asdl_c.py -h ./Include ./Parser/Python.asdl
./Parser/asdl_c.py -c ./Python ./Parser/Python.asdl
Error visitingSum([Constructor(Load, []), Constructor(Store, []), Constructor(Del, []), Constructor(AugLoad, []), Constructor(AugStore, []), Constructor(Param, [])], [])
not all arguments converted during string formatting
Traceback (most recent call last):
  File "/home/barry/projects/python/3.Parser/asdl.py", line 309, in visit
    meth(object, *args)
  File "./Parser/asdl_c.py", line 1043, in visitSum
    self.simpleSum(sum, name)
  File "./Parser/asdl_c.py", line 1067, in simpleSum
    self.emit("default:" % name, 2)
TypeError: not all arguments converted during string formatting
make: *** [Python/Python-ast.c] Error 1
History
Date User Action Args
2012-09-11 21:13:59barrysetrecipients: + barry, loewis, georg.brandl
2012-09-11 21:13:59barrysetmessageid: <1347398039.31.0.775610002592.issue15923@psf.upfronthosting.co.za>
2012-09-11 21:13:58barrylinkissue15923 messages
2012-09-11 21:13:58barrycreate