I'll try to do something over the next couple of days. There are only two issues that I know of (the start symbol issue and the output of a warning message that was previously suppressed in PLY-2.5).
Cheers, Dave On Feb 27, 2009, at 12:42 AM, eliben wrote: > > > > On Feb 25, 8:53 pm, rodsenra <[email protected]> wrote: >> Hi, >> >> I have been using Ply for some time now in two projects: >> - an ISIS formatting language compiler [1] >> - an IEC 61131 compiler for SFC and ST languages. >> >> Ply is wonderfull ! Thanks a lot. >> >> For the latter project, I needed to start yacc() at different >> productions. >> I noticed that the 'start' parameter is just what I needed, but it >> is >> unused. >> Therefore, I did the following crude patch to yacc.py (version 3.0): >> >> - grammar.set_start(pinfo.start) >> >> + if start is not None: >> + grammar.set_start(start) >> + else: >> + grammar.set_start(pinfo.start) >> >> This feature was disabled intentionally ? Can I use this patch >> safely ? >> > > Hi Rod, > > Dave said in a previous post that this is indeed a bug in PLY-3 and > will be fixed in the next release. > > Dave, do you have any roadmap, even approximate for the next bugfix > release? > > Eli > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "ply-hack" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/ply-hack?hl=en -~----------~----~----~----~------~----~------~--~---
