We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I made a simple grammar
grammar = \ """ rule <- (subexpression)+; subexpression <- r'^.*$'; """
and tried to parse a simple text like so
from arpeggio.peg import ParserPEG parser = ParserPEG(grammar, "rule") parsed = parser.parse("something simple")
And the process never finishes. It just goes on parsing, steadily filling up the free memory.
The text was updated successfully, but these errors were encountered:
3738263
Hello, rihardsk.
Thanks for the report. It is fixed now on master.
Regards, Igor
Sorry, something went wrong.
No branches or pull requests
I made a simple grammar
and tried to parse a simple text like so
And the process never finishes. It just goes on parsing, steadily filling up the free memory.
The text was updated successfully, but these errors were encountered: