SimonDE
Results
2
issues of
SimonDE
Accumulate and add compiler flags to calls to the compile function for eval/exec code in handleEval when features that alter syntax are imported from the **future** module. The problem was...
Issue #23 shows that evaluating the print function imported from `__future__` breaks with a syntax error: ``` python from __future__ import print_function print('spam', file=sys.stderr) ``` ``` Traceback (most recent call...