Hi, after installing pattern3 from pip: Following must be fixed: 1. Use tree.py from git repository 2. 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
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