**Migrated issue, originally created by Anonymous** Add something like this to pyparser.py to support Python 2.3: try: set() except NameError: from sets import Set as set
Migrated issue, originally created by Anonymous
Add something like this to pyparser.py to support Python 2.3:
try:
set()
except NameError:
from sets import Set as set