erkyrath / tworld

A choice-based shared online text environment sandbox
MIT License
71 stars 13 forks source link

Expression parsing fails in Python 3.4 #156

Closed erkyrath closed 10 years ago

erkyrath commented 10 years ago

Python 3.4 adds a new node type to the ast module for True, False, and None. These now show up as ast.NameConstant instead of ast.Name.

erkyrath commented 10 years ago

Fixed. Tested on Python 3.4 and 3.3.5.