Open DHOFM opened 5 years ago
Hi,
Thanks for the solution, I also ran into this problem using the `parsetree' function. Strangely however, is that on Windows 10 the code still worked without the modification and only on Ubuntu 18.04 it did need the modification. On both systems I used Python 3.7.3.
See also #62
Bounty here: https://github.com/clips/pattern/issues/62#issuecomment-391473725
Any plan to fix this issue? It seems to be an easy fix?
Any plan to fix this issue?
Yes, see #62
It seems to be an easy fix?
No ^^" see #62
Hi, after installing pattern3 from pip: Following must be fixed:
Use tree.py from git repository
In Init def _read the raise StopIteration will only work to Python 3.6 Changing like: try: yield line except StopIteration: return
Will fix it