Igor Dejanović
Igor Dejanović
Hi, John. Do you still experience these problems with the new version? I've just released 0.15.0 and a lot has changed since 0.12 so you might give it a try.
@johnw3d Hi. I'm closing this as stale and non-reproducible. In case problems still persist with the newest version feel free to reopen.
Hi, You must use unicode strings for Python 2.x. The easiest way is to import `unicode_literals` from future. Here is a fully working test: ```python # -*- coding: utf-8 -*-...
Actually it is usual behaviour. In Python 3 writing text in quotes is interpreted as unicode string while in Python 2.x it is a array of bytes. In 2.x if...
And yes, you are right, that should probably be documented. I think it is not at the moment.
Yup, this case seems odd. Could you please make a PR with failing test so I could investigate?
Parser table serialization is something that I plan to do soon. What have you tried to do and get slow parsing? Which parser did you use? LR or GLR? parglare...
How big is the file you are parsing? For LR you should have at least 300Kb/sec more-less depending on the language. GLR has additional overhead and is at the moment...
Related to #52 and #36
First version of table caching is on the master branch. Please see the updates in the HISTORY.md and the docs. Please test with your code and let me know it...