Force input() to be an alias for raw_input() on Python2
Python3 input() and Python2's raw_input() are equivalent. Python2's input() is equivalent to eval(raw_input()) and therefore it can throw NameError exceptions if you pass it invalid python code. Fixes GitLab issue #221
Loading
Please register or sign in to comment