Hide Forgot
Description of problem: When I run an ANTLR3 parser with the Python runtime, I receive the following warning: WARNING: ANTLR version mismatch: The recognizer has been generated by V3.2 Fedora release 14 (Laughlin) Wed Oct 13 19:37:52 UTC 2010, but this runtime is V3.1.2, this may not work correctly. Please use the V3.2 Fedora release 14 (Laughlin) Wed Oct 13 19:37:52 UTC 2010 runtime or higher. The versions of the ANTLR runtimes should always be updated to match the version ANTLR. Version-Release number of selected component (if applicable): antlr3: 3.2 antlr3-python: 3.1.2 How reproducible: Always Steps to Reproduce: 1. $ antlr3 exer1.g 2. $ python exer1Parser.py 3. type ^D With the following exer1.g: grammar exer1; options { language=Python; backtrack=true; } l: e NEWLINE ; e: t '+' e | t ; t: f '+' t | f ; f: '(' e ')' | DIGIT ; DIGIT: ('0'..'9') ; NEWLINE: '\n' ; Actual results: The warning above. Expected results: No warning. Additional info: I also receive this error, which I assume is related to the version mismatch: Traceback (most recent call last): File "exer1Parser.py", line 403, in <module> main(sys.argv) File "exer1Parser.py", line 399, in main main.execute(argv) File "/usr/lib/python2.7/site-packages/antlr3/main.py", line 151, in execute self.parseStream(options, inStream) File "/usr/lib/python2.7/site-packages/antlr3/main.py", line 218, in parseStream result = getattr(parser, options.parserRule)() TypeError: getattr(): attribute name must be string
This message is a notice that Fedora 14 is now at end of life. Fedora has stopped maintaining and issuing updates for Fedora 14. It is Fedora's policy to close all bug reports from releases that are no longer maintained. At this time, all open bugs with a Fedora 'version' of '14' have been closed as WONTFIX. (Please note: Our normal process is to give advanced warning of this occurring, but we forgot to do that. A thousand apologies.) Package Maintainer: If you wish for this bug to remain open because you plan to fix it in a currently maintained version, feel free to reopen this bug and simply change the 'version' to a later Fedora version. Bug Reporter: Thank you for reporting this issue and we are sorry that we were unable to fix it before Fedora 14 reached end of life. If you would still like to see this bug fixed and are able to reproduce it against a later version of Fedora, you are encouraged to click on "Clone This Bug" (top right of this page) and open it against that version of Fedora. Although we aim to fix as many bugs as possible during every release's lifetime, sometimes those efforts are overtaken by events. Often a more recent Fedora release includes newer upstream software that fixes bugs or makes them obsolete. The process we are following is described here: http://fedoraproject.org/wiki/BugZappers/HouseKeeping