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 thomaslee
Recipients thomaslee
Date 2008-12-02.07:12:17
SpamBayes Score 0.00012524732
Marked as misclassified No
Message-id <1228201939.96.0.820748587182.issue4347@psf.upfronthosting.co.za>
In-reply-to
Content
A deeper issue here is that Parser/parsetok.c has a dependency on
graminit.h. The problem is that Parser/parsetok.c is a part of the
Parser/pgen program which is actually being used to *generate*
graminit.h in the first place.

This breaks Python whenever syntax is added to or removed from
Grammar/Grammar in such a way that the value of encoding_decl changes,
because the value of encoding_decl used by pgen is different to the
value used to build python itself.

A simple work around for those wishing to change the syntax is a "make;
make clean; make". It'd obviously be nice if the build were fixed, though.
History
Date User Action Args
2008-12-02 07:12:20thomasleesetrecipients: + thomaslee
2008-12-02 07:12:19thomasleesetmessageid: <1228201939.96.0.820748587182.issue4347@psf.upfronthosting.co.za>
2008-12-02 07:12:19thomasleelinkissue4347 messages
2008-12-02 07:12:17thomasleecreate