Hi, in pattern3/text/tree.py line 36 is missing izip it is written as ``` try: except: izip = zip # Python 3 ``` while it should be ``` try: izip except: izip = zip # Python 3 ```