-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
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
Python 3.7 Issue #282
Comments
Open
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. |
This was referenced Nov 28, 2019
See also #62 Bounty here: #62 (comment) |
Any plan to fix this issue? It seems to be an easy fix? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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
The text was updated successfully, but these errors were encountered: